我几乎得到了它,但我被困在一件事上。我正在尝试使子 p 标签流动到父 div 的宽度和高度。我只是不知道如何使 p 元素比父 div 略小(我相信是 4px),以便显示右边框和下边框。看看这个jsFiddle。
和有问题的代码:
.box {
background: #b2b2b2;
height: 160px;
width: 210px;
margin: 25px;
padding: 0;
position: relative;
overflow:hidden;
}
.box p {
color: #fafafa;
width:100%;
height:100%;
margin: 0;
padding: 25px;
border: 2px solid white;
}
<div class="box"><p class="boxBtm">Some text in the box</p></div>