我有一个绝对的标题div所以我想让它静止但如果我这样做,里面的内容开始改变调整大小窗口的位置。我可以用什么技巧来实现一个静态头,它不会在窗口调整大小时移动内容?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<head>
<title>Client </title>
<style type="text/css">
.heading {position:fixed; visibility:show; width:100%; left: 0px; top: 0px; z-index:3;
border-bottom:5px solid #ccc; }
header{
position:absolute;
width: 100%;
height: 60px !important;
z-index:7;
top: 0px;
}
/*My div position*/
.positioning-container{position:relative;
width:1000px; margin:0 auto 0 auto;
black solid; padding:0px;
padding:60px 0 30px 0;
border-bottom:0px; padding:0px;
background:#eee;}
.inner-container{position:relative;
background:#fff; padding:0px;
padding:60px 0 30px 0; }
/*My div position*/
</style>
</head>
<body>
<div class="positioning-container">
<div class="inner-container" align = "center">
<header>
<div class= "heading" style="width:100% ; height:50px; background-color:#00A5C6">
<table id ="headertable" align="left"><tr><td>
<a href="index.php"><h2 class= "logo">Client Review</h2><td> </td></a></td><td>
<label>Search</label><input typ= "text"></td>
<td><a href="index.php" class="button middle">search</a></td>
<td><a href="login.php" class="button middle">Login</a></td>
<td><a href="register.php" class="button middle">Add Client</a></td>
<td><a href="logout.php" class="button middle">Logout</a></td>
<td align="left" class="profile"><img src="bhubezi/images/logos/nopic.png" width="50"
height="40"></td>
</tr>
</table>
</div>
</header>
<div class="content">
content
</div>
</div>
</div>
答案 0 :(得分:1)
坚持相对和绝对定位。请记住,当您将项目定位为绝对值时,它绝对是最接近的相对位置。
<div class="relative" style="position: relative">
<div class="absoluteItem" style="position: absolute; bottom: 0;">
this content will sit on the bottom line of it's parent div (relative)
</div>
</div>
当放大和缩小浏览器时,此内容将保持不变。
答案 1 :(得分:1)
静态是元素的默认位置。通过为容器指定固定的像素宽度,可以防止窗口调整大小。如果它是流动的,它将会转移。如果它已修复,则不会。