Results 1 to 4 of 4

Thread: [HTML]

  1. #1
    Join Date
    Nov 2008
    Posts
    3
    Tokens
    0

    Default [HTML]

    I have a table and I want it right up in the top left corner. I've done
    it before, it's something like <table leftmargain/border="0" topmargin/border="0"> but i can't remember. HELP!!!

  2. #2
    Join Date
    Sep 2005
    Location
    East London
    Posts
    3,028
    Tokens
    0

    Latest Awards:

    Default

    HTML Code:
    <style>
    table {
    margin: 0 auto;
    }
    </style>
    That shud work. I replied in your other thread aswell lmao

  3. #3
    Join Date
    Feb 2007
    Location
    Essex, England
    Posts
    1,392
    Tokens
    0

    Latest Awards:

    Default

    body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    }
    table {
    width: whatever px;
    height: whatever px;
    margin: 0;
    padding: whatever.
    top: 0;
    left: 0;
    }

    Should work?


  4. #4
    Join Date
    Sep 2005
    Location
    East London
    Posts
    3,028
    Tokens
    0

    Latest Awards:

    Default

    Quote Originally Posted by L?KE View Post
    body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    }
    table {
    width: whatever px;
    height: whatever px;
    margin: 0;
    padding: whatever.
    top: 0;
    left: 0;
    }

    Should work?
    I put body originally but i wern't sure

    See i am a trial and error person

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •