Why border of <th> not showing here?
Posted
by metal-gear-solid
on Stack Overflow
See other posts from Stack Overflow
or by metal-gear-solid
Published on 2010-05-07T13:23:02Z
Indexed on
2010/05/07
13:48 UTC
Read the original article
Hit count: 213
css
How to give style to <thead>
only, not to <th>
?
Why border of th
not showing
<table>
<thead style="border-top:10px solid red; background:yellow">
<tr><th style="border-top:10px solid green">Name</th></tr>
</thead>
<tbody>
<tr><td>Bob</td></tr>
<tr><td>Tom</td></tr>
</tbody>
</table>
© Stack Overflow or respective owner