I would like to create a table with text align. For example row 1 align=right, row 2=left. 
But it does not work. All the text are centered. Thanks for help
My example code: 
<table>
	<thead>
		<tr>
			<th class="clear"></th>
		</tr>
	</thead>
	<tbody>
		<tr>
			<th align="right">Unterkunft</th>
			<td align="left">Ferienwohnung mit Balkon und Dachterrasse, Wohnung im 2. OG</td>
		</tr>
		<tr>
			<th align="right">Mahlzeiten</th>
			<td align="left">Selbstverpflegung</td>
		</tr>
		<tr>
			<th align="right">Wohnfläche</th>
			<td align="left">90qm</td>
		</tr>
		<tr>
			<th align="right">Vierter Eintrag</th>
			<td align="left">Dies und das und jenes</td>
		</tr>
	</tbody>
</table>
                  
                
Comments
please send us link ti page where you got this table so we can have a look on it.
Thanks!
th.right, td.right { text-align: right !important; }th.left, td.left { text-align: left !important; }