分页: 1/1 第一页 1 最后页 [ 显示模式: 摘要 | 列表 ]
其實這樣的例子很多,在dw cs3裡就就有很多我也是看那例子的
顯示地址
<!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 content="text/html; charset=utf-8" http-equiv="Content-Type" />
<style type="text/css">
* {
margin:0;
padding:0;
}

body {
height:100%;
}
.top {
  height: 100px;
  background-color:#FFC
}
.left {
  height: 600px;
  width: 150px;
  float: left;
  background-color:#CCCccc;
  
}
.main {
  height: 600px;
  margin-left: 160px;
  background-color:#F2F2F2;
}
.bottom {
  height: 100px;
  /*clear: both;可以不用吧*/
  background-color:#FFC
}
body {
  margin: 0px;
}
div {
  border: 1px solid #C0C0C0;
}
</style>
</head>

<body>

<div class="top">
</div>
<div>
<div class="left">
</div>
<div class="main">aaa
</div>
</div>
<div class="bottom">
</div>
</body>
</html>
Tags: , ,

javascript 對象的各個高度

[不指定 2008/09/03 09:40 | by Else ]
js获取浏览器高度和宽度值

引用
有xhtml的
网页可见区域宽: document.documentElement.clientWidth
网页可见区域高: document.documentElement.clientHeight
网页可见区域宽: document.documentElement.offsetWidth (包括边线的宽)
网页可见区域高: document.documentElement.offsetHeight (包括边线的高)
网页正文全文宽: document.documentElement.scrollWidth
网页正文全文高: document.documentElement.scrollHeight
网页被卷去的高: document.documentElement.scrollTop
网页被卷去的左: document.documentElement.scrollLeft
网页正文部分上: window.screenTop
网页正文部分左: window.screenLeft
屏幕分辨率的高: window.screen.height
屏幕分辨率的宽: window.screen.width
屏幕可用工作区高度: window.screen.availHeight
屏幕可用工作区宽度: window.screen.availWidth



引用

這個是html的
网页可见区域宽: document.body.clientWidth
网页可见区域高: document.body.clientHeight
网页可见区域宽: document.body.offsetWidth (包括边线的宽)
网页可见区域高: document.body.offsetHeight (包括边线的高)
网页正文全文宽: document.body.scrollWidth
网页正文全文高: document.body.scrollHeight
网页被卷去的高: document.body.scrollTop
网页被卷去的左: document.body.scrollLeft
网页正文部分上: window.screenTop
网页正文部分左: window.screenLeft
屏幕分辨率的高: window.screen.height
屏幕分辨率的宽: window.screen.width
屏幕可用工作区高度: window.screen.availHeight
屏幕可用工作区宽度: window.screen.availWidth



注意在XHTML标准下一个请将body改成documentElement
Tags:
分页: 1/1 第一页 1 最后页 [ 显示模式: 摘要 | 列表 ]