CSS Where is the error?!

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • willysbirthday
    Confirmed User
    • Feb 2004
    • 436

    #1

    CSS Where is the error?!

    I have a table start with this:
    <TABLE style="BORDER:1px solid black">

    To more CSSIZE this, i create a style sheet
    with
    .borderall{
    BORDER:1px solid black
    }


    I then replace my table with
    <TABLE class="borderall"> But do not get the desired effect!

    This has been bothering me for a while now, and now i'm on quest to figure out WTF!


    any ideas?
    oOooooooOOo
  • willysbirthday
    Confirmed User
    • Feb 2004
    • 436

    #2
    answering my own thread..
    cuz i can...
    as if you care ....

    .borderall{
    border-style: solid; border-width: 1px;
    border-color: black;
    }


    oOooooooOOo

    Comment

    Working...