css check

Out of context: Reply #17

  • Started
  • Last post
  • 20 Responses
  • version30

    "i'm gonna just stick that thing in a table!"

    noooo!!!...

    just get away from the negative indent and 50% spacing tricks to find the center

    put your box models in a div like this

    body
    {
    text-align: center;
    }

    #container
    {
    width: 750px;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    border: 0px;
    text-align: left;
    }

    that "container" will center in the window and the justification on everything inside is to the left.

    you should be on and popping

View thread