What are the corresponding CSS syntax for Dreamweaver`s Cellpad and
Cellspace table
properties?
thanx in advance
<style>
<!--
table tr td {
padding: 4px; /* Equivelent to table cellpadding = 4 */
margin: 4px; /* Equivelent to table cellspacing = 4 */
}
--></style>
"estresse" <estr...@zipmail.com> wrote...
thanx once again
Rowland Shaw <spamf...@anotherpointless.org> escreveu nas notícias de
mensagem:uTHEr1mvAHA.2308@tkmsftngp02...
According to: http://www.w3.org/TR/html4/struct/tables.html#edef-TABLE
cellspacing/cellpadding attributes are /not/ depreciated [which I thought
they were] so they need not be replaced by CSS equivelents.
However, theory goes this example below should show no yellow:
<html>
<head>
<style><!--
table, tr, td { padding: none; border: none; margin: none;
border-collapse: collapse; }
--></style>
</head>
<body>
<div style="background-color: red;">
<table style="background-color: yellow;">
<tr>
<td><span style="background-color: blue;">Blah</span></td>
<td><span style="background-color: blue;">Blah</span></td>
<tr>
</table>
</div>
</body>
</html>
"estresse" <estr...@zipmail.com> wrote in message
news:uJPWIZQwAHA.1908@tkmsftngp05...