Change border groove second color?
css, html
Solution
You need some CSS trick to make like `groove` style, see this:http://jsfiddle.net/LbH92/9/
HTML:
<div class="border">
Hi I have two border colors<br />I am also Fluid
</div>
CSS:
div.border{
border-right:2px solid #ffffff;
border-top:2px solid #cccccc;
position:relative;
}
div.border:before{
position:absolute;
display:block;
content:'';
border-right:2px solid #cccccc;
border-top:2px solid #ffffff;
height:100%;
width:100%;
box-sizing: border-box;
-moz-box-sizing:
border-box; -webkit-box-sizing:
border-box;
}
Hope will solve problem!
Problem
I'm using border groove but I need to edit the second color. ``` border-right: 2px groove #FFFFFF; border-top: 2px groove #FFFFFF; ```