css 固定顶部 怎么用css定义一个固定在页面顶部的层_ Div+Css教程-查字典教程网
css 固定顶部 怎么用css定义一个固定在页面顶部的层
css 固定顶部 怎么用css定义一个固定在页面顶部的层
发布时间:2016-12-27 来源:查字典编辑
摘要:CSS定义一个固定在页面顶部的层body{height:1200px;margin:0;padding:0;background-attac...

<!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>CSS定义一个固定在页面顶部的层</title>

<style type="text/css">

body {

height:1200px;

margin: 0;

padding: 0;

background-attachment: fixed; /* prevent screen flash in IE6 */

}

div,ul{margin: 0;padding: 0;}

#topNavWrapper {

width: 980px;

text-align: left;

height: 31px;

margin: 0px auto;

z-index:100;

_position: relative ;

_top:0px;

}

#topNav {

width: 980px;

float: left;

display: block;

z-index: 100;

overflow: visible;

position: fixed;

top: 0px; /* position fixed for IE6 */

_position: absolute;

_top: expression(documentElement.scrollTop + "px");

background-image: url( /uploadfile/2012/0717/0717014456145_4456.gif);

background-repeat: no-repeat;

background-position: right;

height: 31px;

line-height: 31px;

color:#fff;

background-color:#444;

text-align:center;

}

</style>

</head>

<body>

<div id="topNavWrapper">

<ul id="topNav">

我是固定在页面顶部的层

</ul>

</div>

</body>

</html>

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新 Div+Css教程学习
    热门 Div+Css教程学习
    网页设计子分类