Posted by rosdi on 06/22/06 03:04
I tried to separate my table rows a few pixels away from each other,
but my css below doest work, why?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style type="text/css">
<!--
tr {
margin-bottom: 15px;
}
-->
</style>
</head>
<body>
<table width="100%">
<tr>
<td>row 1</td>
</tr>
<tr>
<td>row 2</td>
</tr>
</table>
</body>
</html>
Navigation:
[Reply to this message]
|