0

自从我完成任何繁重的 HTML/CSS 工作以来已经有好几年了,最近我开始对我公司的网站进行大修。我对设计的结果非常满意,一切似乎都正常,但现在我的内容填满了页面,我意识到页面不会滚动,尽管“折叠”下方有内容。

我猜这是因为我使用的是固定位置的 CSS 表。我尝试将位置属性更改为“相对”,虽然这解决了滚动问题,但它弄乱了布局,我不知道如何使它工作。

这是我的代码的小提琴:http: //jsfiddle.net/jbooth63/SKnsc/

这是代码实时预览的链接:http ://www.financecapital.us/test/test.html

任何帮助将不胜感激!这是我正在使用的代码示例:

<head>
<style type="text/css">
body,td,th {
font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
font-style: normal;
font-weight: normal;
font-size: 10px;
color: #333;}

body {
background-color: #fff;}

.socialcell {
position: fixed;
margin-top: 105px;
margin-left: 5px;
background-color: #ff9900;}


.headerimg {
position: fixed;
margin-left: 5px;
margin-top: 5px;}

.leftsidebar {
position: fixed;
margin-top: 155px;
margin-left: 5px;
background-color: #eee;
border-right: .1em dotted #369;
border-bottom: .1em dotted #369;}
</head>
<body>
<div class="headerimg"><img src="header2.jpg" title="Financing the world's equipment.">    
</div> 

<div class="socialcell">
<table width="300" height="50">
<tr>
<td><center>
<a href="https://www.facebook.com/financecapitalut"><img src="facebook.png" title="Finance 
Capital on Facebook" height="40"></a>
<a href="http://www.linkedin.com/company/finance-capital-llc?trk=hb_tab_compy_id_477909#">  
<img src="linkedin.png" title="Finance Capital on LinkedIn" height="40"></a>
<a href="https://twitter.com/FinanceCap"><img src="twitter.png" title="@FinanceCap on 
Twitter" height="40">
</center></td>
</tr>
</table>
</div>
4

1 回答 1

4

这很简单,我是自己使用 chrome 开发者工具完成的。

问题是您正在使用:“位置:固定;” 在你的 div 上。

使用“位置:绝对;” 在每个 div 上,都应该工作。

希望它可以帮助你。

于 2013-08-19T20:24:05.277 回答