自从我完成任何重型HTML / CSS工作以来,已经有好几年了,最近我开始对公司的网站进行大修。我对设计结果的方式非常满意,一切似乎都有效,但现在我的内容正在填满页面,我已经意识到页面不会滚动,尽管在“折叠”下面有内容。
我猜这是因为我正在使用固定位置的CSS表。我尝试将position属性更改为'relative',虽然这解决了滚动问题,但它搞砸了布局,我不知道如何让它工作。
以下是我的代码的小提琴: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>
答案 0 :(得分:4)
这很简单,我自己使用chrome开发工具完成了它。
问题是你正在使用:“position:fixed;”你的divs。
使用“position:absolute;”在每个div上都应该工作。
希望它对你有所帮助。