HighDots Forums  

border solid...just right, bottom and left, not top?

Cascading Style Sheets Layout/presentation on the WWW (comp.infosystems.www.authoring.stylesheets)


Discuss border solid...just right, bottom and left, not top? in the Cascading Style Sheets forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
tradmusic.com
 
Posts: n/a

Default border solid...just right, bottom and left, not top? - 02-03-2006 , 09:58 AM






Hi,

Is it possible to set a border to only be on the right, bottom and left?

I tried this, but it isn't working:

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

Any help would be greatly appreciated. Thanks.

Nath.



Reply With Quote
  #2  
Old   
Els
 
Posts: n/a

Default Re: border solid...just right, bottom and left, not top? - 02-03-2006 , 10:16 AM






tradmusic.com wrote:

Quote:
Hi,

Is it possible to set a border to only be on the right, bottom and left?

I tried this, but it isn't working:

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

Any help would be greatly appreciated. Thanks.
You can't mix that.
It's either

border:1px solid #000000;

or

border-width:0 1px 1px 1px;
border-style:solid;
border-color:black;

You want the second version, which gives you the option of setting
styles per side.

You could also have:

border-width:0 1px 1px 3px;
border-style:solid dashed dotted double;
border-color:red blue black green;

--
Els http://locusmeus.com/
accessible web design: http://locusoptimus.com/


Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.