页面缩小后ie和火狐底部出现空白 能不能用js获取ie浏览器的滚动高度 和页面的实际高度 然后将实际高度赋值给滚动高度 或者是减去他们的差值

<!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="textml; charset=utf-8" />
<title>无标题文档</title>
<style>

body{zoom:0.7; -moz-transform:scale(0.7); transform-origin:top center;}
#header{width:1920px; border:2px solid #CCCCCC;overflow:hidden;}
.txt{height:2000px; width:1400px; background-color:#33FFFF;}
</style>
</head>
<body>
<div id="header">
<div class="txt"></div>
</div>
</body>
<ml>

<!--缩小后火狐和ie底部的空白如何隐藏-->

阿罗哇哇
浏览 2240回答 2
2回答

李晓健

这个是因为你那个 zoom:0.7; -moz-transform:scale(0.7)  造成的呀,这两个一个在IE上有效,一个在firefox上有效。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript