Results 1 to 3 of 3

Thread: Table bottom boarder help.

  1. #1
    Join Date
    Nov 2007
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Table bottom boarder help.

    Is it possible to add a visible bottom border in a table cell without having the left, right, and top border

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

    Default

    Code:
    selector {
         border: none;
         border-bottom: 1px solid #000000;
    }
    where selector is either td for a table data cell or th for a table header cell

  3. #3
    Join Date
    Dec 2007
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default css border bottom

    .selector {
    border-bottom: 1px solid #000000;
    }

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
  •