I have the following simple table, with 2 columns. Each column has a list in it. The problem is that the list in the first column is vertically centred in the list.
I want both lists to start from the top of the columns.
How do I achieve this?
I want both lists to start from the top of the columns.
How do I achieve this?
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"[URL unfurl="true"]http://www.w3.org/TR/html4/loose.dtd">[/URL]
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Untitled Document</title>
</head>
<body>
<table width="100%" border="0">
<tr>
<td>
<div class="multiple_options_caption">Property Features</div><div class="multiple_options"><ul><li>Alarm<br /></li><li>Balcony<br /></li><li>Cable/Satellite TV<br /></li><li>Dishwasher<br /></li><li>Fireplace<br /></li><li>Internet Access<br /></li><li>Microwave<br /></li><li>Patio/Deck<br /></li><li>Washer/Dryer</li></ul></div><br />
</td>
<td>
<div class="multiple_options_caption">Community Features</div><div class="multiple_options"><ul><li>Bike Paths<br /></li><li>Bus station<br /></li><li>Cafe(s)<br /></li><li>Cinema<br /></li><li>College(s)<br /></li><li>Dental clinic<br /></li><li>Hospital<br /></li><li>Medical center<br /></li><li>Playground/Park<br /></li><li>Primary school(s)<br /></li><li>Public Transportation<br /></li><li>Restaurants<br /></li><li>Shopping mall(s)<br /></li><li>University</li></ul></div><br />
</td>
</tr>
</table>
</body>
</html>