Results 1 to 3 of 3

Thread: Creating a Dotted Css Table without Top line!

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

    Default Creating a Dotted Css Table without Top line!

    Hello everyone...i created one of my thread yesterday and get an amazing which was i looking so i think , i should ask more help from you hope you will help me.

    i want to create a Dotted Css Table without Top line!

    Example here:

    http://www.proxy.org

    i dont want to be a stealer thats why i am asking here and not stealing from
    http://www.proxy.org

  2. #2
    Join Date
    Aug 2005
    Location
    Other Side of My Monitor
    Posts
    3,494
    Thanks
    5
    Thanked 105 Times in 104 Posts
    Blog Entries
    1

    Default

    With CSS you declair the borders in this manner:

    border-style: top, left, bottom, right; so you can add this to your CSS:

    Code:
    p.dotted {border-style: none dotted dotted dotted;}
    And then to use it in the HTML, something like:

    Code:
    <p class="dotted">A dotted border</p>
    {CWoT - Riddle } {Freelance Copywriter} {Learn to Write}
    Follow Me on Twitter: @InkingHubris
    PHP Code:
    $result mysql_query("SELECT finger FROM hand WHERE id=3");
    echo 
    $result

  3. #3
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    Personally I'd say:
    Code:
    .dotted { /* Warning: bad class name */
      border: 1px dotted black;
      border-top: 0 none;
    }
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

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
  •