gpt4 book ai didi

html - 如何阻止元素包裹在文本内容上?

转载 作者:太空宇宙 更新时间:2023-11-04 05:06:46 26 4
gpt4 key购买 nike

我有 2 个 div,我想将它们垂直放置并向左对齐,并且我希望它们的宽度根据文本量换行。

fiddle

.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: 0white-space: nowrap 可能会影响不同的内容。

最佳答案

据我了解,这可能就是您想要的。

.main {
color: white;
}
.line {
padding: 3px;
margin: 2px;
background-color: #505050;
float:left;
clear:left;
}

检查这个http://jsfiddle.net/2kmzK/1/

关于html - 如何阻止元素包裹在文本内容上?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10256082/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com