Forum Moderators: not2easy

Message Too Old, No Replies

Simple CSS Border question

         

JAB Creations

5:15 pm on Nov 17, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



This works...

border: 1px solid #000;

This is what I want...


border: 1px 0px 1px 0px solid #000;

It's not working and I want to keep the size of the site I'm working on to an absolute min. :-D

jetboy_70

5:27 pm on Nov 17, 2004 (gmt 0)

10+ Year Member



Unfortunately you can't do this all in one go, but try:

border: solid #000;
border-width: 1px 0;

JAB Creations

1:14 am on Nov 18, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



That works! Thanks! :-D