我有一个简单的 div,其中有 2 个 textarea。我将 textarea 的宽度设置为,100%
但它只是稍微超出了 div。
看到这个小提琴。
HTML:
<div class="offer_a_help">
<textarea></textarea>
<br/>
<textarea></textarea>
</div>
CSS:
.offer_a_help {
width: 350px;
height: 250px;
position: absolute;
top: calc(100%/2 - 350px/2);
left: calc(100%/2 - 250px/2);
background-color: #eee;
border-radius: 5px;
border: 1px solid #bbb;
}
.offer_a_help textarea {
width: 100%;
}
为什么会发生这种情况以及解决此问题的最简单方法是什么?