Results 1 to 4 of 4

Thread: CSS Equivalents ?

  1. #1

    Thread Starter
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    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.

  2. #2
    Fanatic Member cpradio's Avatar
    Join Date
    Apr 2002
    Posts
    616
    body{ margin: 0px; }
    td { vertical-align: top; text-align: center; }

    -Matt
    Last edited by cpradio; Jul 2nd, 2002 at 12:21 PM.
    http://cpradio.net/
    Administrator @ WDForums and a Moderator @ WebXpertz City Forums

  3. #3
    Black Cat JoshT's Avatar
    Join Date
    Nov 2000
    Location
    WNY, USA
    Posts
    4,032
    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.

  4. #4

    Thread Starter
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    Thumbs up

    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
  •  



Click Here to Expand Forum to Full Width