Is that possible not to indent cells in th?
http://jsfiddle.net/kWTte/1/
HTML
<table>
<th>
<td></td>
<td></td>
</th>
<tr>
<td></td>
<td></td>
</tr>
</table>
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can think of
thas the equivalent oftd, but for table’s header.So
ths should be contained into atrelement.The correct form is:
If you need to wrap the table header you could use
thead.Similarly you could use
tbodyfor the body of the table (note that you can have more than one tbody in the same table).