改变边框凹槽第二种颜色?

时间:2013-11-29 13:12:45

标签: html css

我正在使用边框凹槽,但我需要编辑第二种颜色。

border-right: 2px groove #FFFFFF;
border-top: 2px groove #FFFFFF;

3 个答案:

答案 0 :(得分:7)

你需要一些CSS技巧来制作groove样式,请看: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;
    }
希望能解决问题!

答案 1 :(得分:2)

我担心你无法改变凹槽边框的第二种颜色。 你应该使用:after。

制作两个不同的边框

答案 2 :(得分:-1)

border-top: 2px groove #ff0000;

使用此代码