css多个div浮动float高度自适应的两种方法
程序员文章站
2022-04-30 20:44:37
...
css多个div float并排,高度都自适应(自增)
采用 Div + CSS 进行三列或二列布局时,要使两列(或三列)的高度相同,用 Table 很容易实现,但采用 Div + CSS 就显得比较麻烦了。按照一般的做法,大都采用背景图填充或 JS 脚本的方法使高度相同。
方法一:纯css解决办法(“隐藏容器溢出”和“正内补丁”和“负外补丁”结合的方法):
<style type="text/css"> <!-- #wrap{overflow:hidden;} #sidebar_left,#sidebar_right{padding-bottom:100000px;margin-bottom:-100000px;} --> </style> <div id="wrap" style="width:300px; background:#FFFF00;"> <div id="sidebar_left" style="float:left;width:100px; height:1000px; background:#FF0000;">Left</div> <div id="sidebar_mid" style="float:left;width:100px; background:#666;"> Middle<br /> Middle<br /> Middle<br /> Middle<br /> Middle<br /> Middle<br /> Middle<br /> Middle<br /> Middle<br /> </div> <div id="sidebar_right" style="float:right;width:100px; height:500px; background:#0000FF;">Right</div> </div>
方法二:js解决办法(思路,此方法不推荐):
<script> var a=Math.max(document.getElementById("left").offsetHeight,document.getElementById("center").offsetHeight,document.getElementById("right").offsetHeight); //获取3个div的最大高度 document.getElementById("left").style.height = a + "px"; document.getElementById("center").style.height = a + "px"; document.getElementById("right").style.height = a + "px"; </script>
以上就是css多个div浮动float高度自适应的两种方法的详细内容,更多请关注其它相关文章!
上一篇: 如何将两个段代码 合成一个函数
下一篇: 一段时间内删除数据库数据
推荐阅读
-
HTML/CSS中,DIV高度自适应的解决方法
-
Equal Height Columns --DIV+CSS布局中自适应高度的解决方法_html/css_WEB-ITnose
-
css中div高度自适应的方法(兼容FF IE)_html/css_WEB-ITnose
-
css多个div浮动float高度自适应的两种方法
-
CSS子div设置float后父级div无法自适应高度的问题解决方法
-
解决子级用css float浮动 而父级div没高度不能自适应高度_html/css_WEB-ITnose
-
使用float属性布局时父元素高度不能自适应的解决方法_html/css_WEB-ITnose
-
DIV+CSS布局中自适应高度的解决方法
-
使用float属性布局时父元素高度不能自适应的解决方法_html/css_WEB-ITnose
-
CSS子div设置float后父级div无法自适应高度的问题解决方法