Your Current Design: -6ren">
gpt4 book ai didi

html - 如何确保 DIV 拉伸(stretch)以适合其内容?

转载 作者:技术小花猫 更新时间:2023-10-29 12:18:00 24 4
gpt4 key购买 nike

我有这个带有表格的 HTML:

<div
class="currentDesignDiv"
style="margin-bottom:5px;">
<div>
<img
alt="Thumbnail"
src="http://www.propertyware.com/templates/
<bean:write name="currentTemplate" property="primaryKey"/>
/thumb.gif"/>
</div>
<div>
<table>
<tr>
<th>Your Current Design: </th>
<td>Template #:
<bean:write name="currentTemplate" property="primaryKey"/>
</td>
</tr>
<tr>
<th>Last Updated: </th>
<td>
<bean:write name="currentTemplate" property="modifiedByAsString"/>
</td>
</tr>
<tr>
<th>Total Pages: </th>
<td>
<bean:write name="numberOfPages"/>
</td>
</tr>
</table>
</div>

通过这个 CSS 设置样式:

 .currentDesignDiv{
background-color:#e7e7e7;
border:1px solid #9c9c9c;
padding:5px;
width:100%;
min-width:860px;
}
.currentDesignDiv div{
float:left;
width:33%;
}
.currentDesignDiv div table{
font-size:9pt;
text-align:left;
margin:17px;
}
.currentDesignDiv div:first-child img{
margin:17px;
width:80px;
}

它在我的大显示器上看起来不错,但是当我换到我的小显示器上时,最右边的 div(里面有一个图像)漂浮在父级 div< 之外。有人对此有解决方案吗?

最佳答案

设置

overflow: auto; 

用于外部 div。这应该使您的父 div 展开,即使它的子项具有 float 属性。 (IE 对此有一些问题,但可以通过一些填充来解决)

关于html - 如何确保 DIV 拉伸(stretch)以适合其内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1161166/

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