IE与火狐FF中div高度自适应问题的解决(三种方法)

本文介绍了三种解决网页布局不平衡问题的方法:通过CSS浮动布局实现左右元素的定位,使用overflow属性解决元素溢出问题,以及利用JavaScript动态调整元素高度以平衡布局。通过实例演示了每种方法的应用。

在网上找了有很多解决该问题的方法:

解决方法1:
     <div>
      <div style="float:left;">111111111</div>
      <div style="float:right;">22222222</div>
      <div style="clear:both;"></div>
    </div>

解决方法2:
   <div style="overflow:auto;">
     <div style="float:left;">1111111111</div>
     <div style="float:right;">2222222222</div>
   </div>

解决方法3(javscript):

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<style type="text/css">
<!--
#main{font-size:12px; line-height:19px; width:900px; color:#FFFFFF}
#left{float:left; width:400px; background-color:#000066; border:1px solid #FF0000}
#right{float:left;width:492px;border:1px solid #FF0000; background-color:#003333; margin-left:4px}
-->
</style>
</head>

<body>
<div id="main">
<div id="left">
我比右面多<br />我比右面多<br />我比右面多<br />我比右面多<br />我比右面多<br />我比右面多<br />
我比右面多<br />我比右面多<br />我比右面多<br />我比右面多<br />我比右面多<br />我比右面多<br />
我比右面多<br />我比右面多<br />我比右面多<br />我比右面多<br />我比右面多<br />我比右面多<br />
我比右面多<br />我比右面多<br />我比右面多<br />我比右面多<br />我比右面多<br />
</div>
<div id="right">
我比左面少<br />我比左面少<br />我比左面少<br />我比左面少<br />我比左面少<br />我比左面少<br />
</div>
<script type="text/javascript">
document.getElementById("right").style.height = document.getElementById("left").offsetHeight -2 + "px";
</script>
</div>
</body>
</html>

转载于:https://www.cnblogs.com/baogg/articles/1917761.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值