Why border of <th> not showing here?
- by metal-gear-solid
How to give style to <thead> only, not to <th>?
Why border of th not showing
http://jsfiddle.net/r8mA7/
<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>