我在将文本包裹在绝对定位的 div 中时遇到问题。我认为问题是我必须将宽度设置为 100%,因为 div 会随页面调整大小。我怎样才能让文本换行。
这是我的代码:
#content {
background: black;
min-height: 60px;
background: #0a0a0a;
position: relative;
padding: 0;
overflow: hidden;
}
#content .entry {
background: white;
position: absolute;
text-wrap: normal;
top: 0;
left: 200px;
padding: 10px;
width: 100%;
height: 100%;
min-height: 50px;
border-left: 1px solid #262626;
}
<div id="content">
<div class="entry">
<-----text---->
</div>
</div>