我正在尝试使用带有浅色的边框插图作为插图,但是,选择的颜色根本没有正确显示,这在每个浏览器中都是一样的
这是 css - 第一个盒子应该有浅色的嵌入边框,第二个盒子应该稍微暗一些:
这里有一个小提琴:CSS inset border Fiddle
.box1 {
display: inline-block;
border: 4px inset #f7f7f7;
margin-top: 16px;
border-radius: 12px;
height: 34px;
background:#fff;
width:230px;
position:relative;
padding:10px;
}
.box2 {
display: inline-block;
border: 4px inset #cccccc;
margin-top: 16px;
border-radius: 12px;
height: 34px;
background:#f7f7f7;
width:230px;
position:relative;
padding:10px;
}
我尝试单独设置边框颜色元素,但没有区别
非常奇怪的行为?