reneeccwest (AT) hotmail (DOT) com (reneeccwest) writes:
Quote:
table border=1
tr><td>I wanna be a round table</td></tr
/table |
It only works in Mozilla-based browsers, but it falls back nicely to
square corners otherwise:
table {
\-moz-border-radius: 0.5em;
}
You need to hide this declaration from Netscape 4 to avoid a serious
bug, @import is probably the best way to do that. You should also
bear in mind that Opera 6 will sometimes ignore other declarations in
the same block, so use:
table {
border: thin black solid;
}
table {
\-moz-border-radius: 0.5em;
}
instead of
table {
border: thin black solid;
\-moz-border-radius: 0.5em;
}
--
Chris