我有一个有半径的盒子 - 我想为其应用边框,但是当我这样做时,“内部”盒子又回到了方形边缘,这可能吗?
CSS
.box {
width:100px;
height:50px;
background:red;
border-radius:6px;
margin:20px;
}
.box2 {
width:100px;
height:50px;
background:red;
border-radius:6px;
margin:20px;
border:5px solid #ccc;
}
HTML
<div class="box"></div>
<div class="box2"></div>
如您所见,第二个框有边框,但我也想保留内半径。
小提琴在这里:CSS边框小提琴