标题/内容对齐/定位

时间:2012-10-21 03:15:15

标签: html css

我正在尝试创建一个网站,其标题位于顶部但始终居中(除非屏幕太小,我希望它位于左侧并在右侧裁剪),然后我想要我的内容向上滚动标题下方以使标题保持原样,但您可以滚动页面底部。这是我现在的代码:

<body>
<div id="header_img">
<span class="class1">
<a href="index.html"><h2>HEATHER</h2></a></span>
<p class="style5">
419.953.5098<br>
<span class="class2">
<a href ="mailto:obringhm@mail.uc.edu">obringhm@mail.uc.edu</a></span></p>

<table>
<tr>
<td><a href="b5_photo_portrait.html">portraits</a></td>
<td><a href="b5_photo_object.html">objects</a></td>
<td>records
</td>
</tr>
</table>  
</div>

<div id="header_img2" style="scroll:auto">
<img class="project14"src="images/image17.jpg">
<img class="project15" src="images/image16.jpg">
<img class="project16" src="images/image20.jpg">
<h3>Portrait Series</h3>
<p>This project is an exploration of composition within a photograph and
the studying of correct value tones in a picture.
<br><br>
Completed: December 2011<br>
Tools: Film Photography
<br></p>
</div>
</body>

和css:

#header_img {
 height: 180px;
 background: #E2E2E2;
 width: 998px;
 position: fixed;
 top: -25px;
 margin: 0 auto;
 z-index: 11;
 box-shadow: 0 6px 10px -10px #888;
 } 
 #header_img2 {
 height: 800px;
 background: E2E2E2; 
 width: 998px;
 position: relative;
 top: 200;
 z-index: 10;
 }

现在,我的内容在标题下方滚动,但标题固定在左侧!

1 个答案:

答案 0 :(得分:1)

老实说,你的代码有点混乱。您的问题是因为您的div位于没有设置宽度的容器内。在正文上设置宽度和边距或将代码放在具有宽度和边距的容器中将解决您的问题。

body{width:960px; margin:0 auto;}

现在其他问题。

  1. 我不知道你为什么在第一个div上将top设置为负值,但它会将你的内容从页面顶部删除。
  2. 你在第二个div上的最高设置是200,这是不行的,它必须让px如此200px。
  3. 框阴影只有4个设置。
  4. 您正在使用不应使用表格的表格。
  5. 看到这个小提琴:http://jsfiddle.net/calder12/r43me/2/