# Horizon(과 Meta) CSS3가 thead가 없는 테이블에 헤더 구분선을 표시함

**URL:** https://meta.discourse.org/t/horizon-and-meta-css3-renders-tables-without-theads-with-a-header-divider/399335
**Category:** Bug
**Tags:** css
**Created:** [3월 26, 2026, 2:42오후 UTC](https://meta.discourse.org/t/horizon-and-meta-css3-renders-tables-without-theads-with-a-header-divider/399335 "2026-03-26T14:42:14Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![roke\_julian\_lockhart](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/roke_julian_lockhart/32/540179_2.png) [@roke\_julian\_lockhart](https://meta.discourse.org/u/roke_julian_lockhart)
#### Post date: [3월 26, 2026, 2:42오후 UTC](https://meta.discourse.org/t/horizon-and-meta-css3-renders-tables-without-theads-with-a-header-divider/399335/1 "2026-03-26T14:42:14Z")

</div>

```HTML
<table>
<tbody>
<tr>
<th>이메일 주소</th>
<td><a href="mailto:example@example"><code>example@example</code></a></td>
</tr>
</tbody>
</table>

```

…다음과 같이 렌더링됩니다:

![A Screenshot](https://global.discourse-cdn.com/meta/original/4X/1/1/0/1109580510d23235bc8e71c594defd82931e456a.png)

> ****
>
> | 이메일 주소 | [`example@example`](mailto:example@example) |

\[1\]

* * *

1. [`forum.gnupg.org/t/7183/4`](https://forum.gnupg.org/t/can-phabricator-accounts-be-requested-here/7183/4?u=rokejulianlockhart)

---

<div class="post-metadata">

### Author: ![darkpixlz](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/darkpixlz/32/549896_2.png) [@darkpixlz](https://meta.discourse.org/u/darkpixlz)
#### Post date: [3월 26, 2026, 4:01오후 UTC](https://meta.discourse.org/t/horizon-and-meta-css3-renders-tables-without-theads-with-a-header-divider/399335/2 "2026-03-26T16:01:29Z")

</div>

이건 정상적인 것 같은데요? 메타 테마에서 이런 현상이 나타나고 있습니다. 헤더를 제대로 지원하려면 마크다운 표를 사용하는 것이 좋습니다.

---

<div class="post-metadata">

### Author: ![roke\_julian\_lockhart](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/roke_julian_lockhart/32/540179_2.png) [@roke\_julian\_lockhart](https://meta.discourse.org/u/roke_julian_lockhart)
#### Post date: [3월 26, 2026, 4:16오후 UTC](https://meta.discourse.org/t/horizon-and-meta-css3-renders-tables-without-theads-with-a-header-divider/399335/3 "2026-03-26T16:16:15Z")

</div>

@darkpixlz, 문제는 `tHead`가 포함된 것처럼 처리하는데, 실제로는 그렇지 않다는 점입니다. `th` 요소들은 `tBody` 안에 있습니다. CommonMark는 이를 지원하지 않습니다:

[https://stackoverflow.com/a/26398232/9731176](https://stackoverflow.com/a/26398232/9731176)
