Log in

View Full Version : Creating a Dotted Css Table without Top line!



hicricket
12-24-2007, 06:56 AM
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

BLiZZaRD
12-24-2007, 09:20 AM
With CSS you declair the borders in this manner:

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



p.dotted {border-style: none dotted dotted dotted;}


And then to use it in the HTML, something like:



<p class="dotted">A dotted border</p>

Twey
12-24-2007, 03:39 PM
Personally I'd say:
.dotted { /* Warning: bad class name */
border: 1px dotted black;
border-top: 0 none;
}