Table width samples |
|||||
|
These are html tags you type.
Within the style container in the head,
or within a separate style sheet file:
table#sample
{
width: 60%;
border: 8px green solid;
margin-left: auto;
margin-right: auto;
}
table#sample th, table#sample td
{
border: 2px red solid;
}
<table id="sample">
<tr>
<th style="width:30%"> Heading 1 </th>
<th> Heading 2 </th>
</tr>
<tr>
<td> Datum 1 </td>
<td> Datum 2 </td>
</tr>
</table>
NOTE:
|
This is the resulting web page content:
|
||||