ultra light fonts

Out of context: Reply #10

  • Started
  • Last post
  • 11 Responses
  • versa0

    leading

    leading has been my nemesis in
    css pursuits

    i fixed it (well close enough across browsers)with this at the top of every stylesheet, default or alternate:

    body {
    margin:0px;
    padding:0px;
    background-color: transparent;
    text-align: left;
    font-family: verdana, arial, helvetica, sans-serif;
    font-size: 10px;
    color: #001122;
    }

    html,body {
    margin:0px;
    padding:0px;
    }

    apparently some browswers need
    the html, body too, since the html is still a 'parent'

View thread