|
-
Jul 2nd, 2002, 11:01 AM
#1
CSS Equivalents ?
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.
-
Jul 2nd, 2002, 12:17 PM
#2
Fanatic Member
body{ margin: 0px; }
td { vertical-align: top; text-align: center; }
-Matt
Last edited by cpradio; Jul 2nd, 2002 at 12:21 PM.
-
Jul 2nd, 2002, 12:18 PM
#3
Black Cat
Code:
body {
margin : 0px 0px 0px 0px;
}
td {
text-align : center;
vertical-align : top;
}
for margin, goes top, right, bottom, left clockwise, or set individually with margin-top: 5px; , etc.
Josh
Get these: Mozilla Opera OpenBSD
I have books for sale: "MCSD in a Nutshell" and "VB Distributed Exam Cram" - PM me for details. Will also trade for a decent ATX Pentium 2 MB/CPU/RAM combo.
-
Jul 2nd, 2002, 01:39 PM
#4
Thanks both of you.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|