PDA

View Full Version : how can change table column sizes


indian_indian
07-28-2008, 10:52 AM
we can adjust column sizes in table (i saw this effect in yahoo mail table) wht is that code

ess
07-28-2008, 12:09 PM
You can control column width directly by setting the width property such as
<table>
<tr>
<td width="120">
<!--- text goes here -->
</td>
</tr>
</table>

Or you can use CSS to control a given column's property, for example
<table>
<tr>
<td style="width:120px">
<!--- text goes here -->
</td>
</tr>
</table>
Cheers
~E