I can't find the following attributes in CSS. Can you help?
<body marginheight=0 marginwidth=0>
<TD Valign="top">
<TD align="center">
I need
body:margin height and marginwidth
td valign
td align.
thanks.
Printable View
I can't find the following attributes in CSS. Can you help?
<body marginheight=0 marginwidth=0>
<TD Valign="top">
<TD align="center">
I need
body:margin height and marginwidth
td valign
td align.
thanks.
body{ margin: 0px; }
td { vertical-align: top; text-align: center; }
-Matt
for margin, goes top, right, bottom, left clockwise, or set individually with margin-top: 5px; , etc.Code:body {
margin : 0px 0px 0px 0px;
}
td {
text-align : center;
vertical-align : top;
}
Thanks both of you. :)