CSS menu

WWDesigner78

New Member
Hi..

I have a question..
I just create a menu in CSS and I'm just wondering whether it is possible to create a two-colored double border with CSS?

I found nothing in the internet?!.. :(

Please help me.

lg
 

adrenalinfeed

New Member
Two colored double border on a html element using css? Sure. Just place some element inside or outside of the element, and define the borders. Use theese css attributes:

Code:
.inner {
border-bottom: 1px solid #f00;
}
.outer {
border-bottom: 1px solid #00f;
}

Use some markup like this:

Code:
<div class="outer">
<div class="inner">
Text
</div>
</div>

Or you could do it by using a background image. There´s several ways to do this. Google css background images to find out more. Good luck! :)
 
Top