Re: more advanced table column aligning

Hi. I'm not 100% sure what you are trying to achieve without code
samples. However this may help. You can do something like this:

<table>
	<thead>
		<tr>
			<td>Price</td>
		</tr>
	</thead>
	<tbody>
		<tr>
			<td>10</td>
		</tr>
	</tbody>
</table>

Now can apply style to thead to make them centre aligned:

thead td { text-align:center; }
tbody td { test-align: right; }

-- 
      ,'/:.          David Arakelian 
    ,'-/::::.        http://www.theatons.com/
  ,'--/::(@)::.      Web Security Consultant
,'---/::::::::::.    Wales
____/:::::::::::::.  
  T H E A T O N S  

Received on Tuesday, 13 May 2008 15:27:55 UTC