top



What the css for border as shown this

just border code Border10

i already added div

Code:

.divclass {
  border: 1px solid #color;
}

Hope this is what you're sreaching for

I think he wants a double border...

If you want a double border, just add another div and with another border CSS.
I think that's how some do it...

.divclass {
border: 1px solid #color;
}

It doesn't work Wink .

of course it wont work,the selector is test and there is no color value.
You have to replace the selector with the class you want the border to appear as well as the HEX color.
For double border you can also use Css3 box-shadow

Code:

-moz-box-shadow: 1px 0px black;
-webkit-box-shadow: 1px 0px black;
Code:
1px = Horizontal ofset /0px = vertical offset

Considered done.