gpt4 book ai didi

html - 如何扩展div?

转载 作者:行者123 更新时间:2023-11-28 11:27:34 25 4
gpt4 key购买 nike

我有这样的东西:

<div class="wrap">
<div class="first">Example</div>
<div class="second">
<div class="inner"></div>
</div>
</div>

“wrap”有宽度(100% 或 1000px)

"inner"有高度和 border-bottom

我想这样展开“first”和“second”

|==================== 1000px or 100% ======================|

Example_____________________________________________________

如果我将宽度添加到“first”和“second”,它看起来不错:

|==================== 1000px or 100% ======================|

Example_____________________________________________________

但是如果示例文本变长,它会换行:

|==================== 1000px or 100% ======================|

Another_____________________________________________________
Example
and
text

但是如果“first”和“second”没有宽度“second是不可见的:

|==================== 1000px or 100% ======================|

Example

怎么做?

编辑:

来自这里:

Expand a div to take the remaining width

有效,示例:

<html>
<head>
<style type="text/css">
div.box { background: #EEE; height: 100px; width: 500px; }
div.left { background: #999; float: left; height: 100%; width: auto; }
div.right { background: #666; height: 100%; }
div.clear { clear: both; height: 1px; overflow: hidden; font-size:0pt; margin-top: -1px; }
</style>
</head>
<body>
<div class="box">
<div class="left">Tree</div>
<div class="right">View</div>
<div class="clear" />
</div>
</body>
</html>

最佳答案

听起来您正在寻找最小宽度:

http://css-tricks.com/almanac/properties/m/min-width/

这将设置最小宽度而不使该宽度成为最大宽度。

关于html - 如何扩展div?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21294150/

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