我在一个div中做了一个跨度。这个跨度只是一个黑色边框,位于 div 上方。我希望这个跨度(黑色边框)适应 div 的宽度和高度。就像这个 div 内部的边框一样。
我的问题是边框超出了 div:http: //jsfiddle.net/QHRYJ/
div {
background: pink;
width: 300px;
height: 200px;
}
span {
position: absolute;
width: inherit;
border: 4px solid;
margin: 10px;
height: inherit;
}
-->-->-->--> *编辑:我想要什么: http: //www.hostingpics.net/viewer.php?id=623039div.png *