我有 2div
我想垂直定位,向左对齐,我希望它们的宽度根据文本量换行。
.main {
position: absolute;
color: white;
}
.line {
padding: 3px;
margin: 2px;
background-color: #505050;
}
<div class="main">
<div class="line">Content content content content</div>
<div class="line">Content content</div>
</div>
我之所以问是否有更直接的解决方案是因为我认为这可能width: 0
会white-space: nowrap
影响不同的内容。