Results 1 to 3 of 3

Thread: Border behind background

  1. #1
    Join Date
    Jul 2008
    Posts
    65
    Thanks
    42
    Thanked 0 Times in 0 Posts

    Default Border behind background

    I have a HTML table with a style attribute for the background of it. I have multiple columns which have a 2 pix border running down the middle of the table. Now my problem is that the border is on top of background of my table. Is there anything I can do about it? Thanks

  2. #2
    Join Date
    Jul 2006
    Location
    just north of Boston, MA
    Posts
    1,806
    Thanks
    13
    Thanked 72 Times in 72 Posts

    Default

    If I understand you correctly, you would like to have the border disappear from the top of the table? If so, just apply a top border of 0 to any element you have a border around.

    Code:
    table,tr,th,td {border-top:0;}
    the code above will make any top border in the table or its headings disappear.

  3. #3
    Join Date
    Jul 2008
    Posts
    65
    Thanks
    42
    Thanked 0 Times in 0 Posts

    Default

    Thanks! That worked

Bookmarks

Posting Permissions

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