Forum Moderators: not2easy

Message Too Old, No Replies

Border on a border

css borders

         

joe051864

11:13 pm on Jan 17, 2009 (gmt 0)



Anyone know if it is possible to add a 1 pixel border to an existing 20 px border this is what I have now. Si it would be a gray border with an orange 1 px border on the inner portion of the border.

.twoColFixLtHdr #container {
width: 900px;
background: #FFFFFF;
margin: 0 auto;
border: 20px solid #B6A9A3;
text-align: left;
}

TYIA, Joe

caribguy

1:06 am on Jan 18, 2009 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



outline does this, but not in IE :(

outline-width: 1px;
outline-style: solid;
outline-color: #000;

[w3.org...]

joe051864

2:31 am on Jan 18, 2009 (gmt 0)



Thank you, that's great.