所以我有一个简单的网站。
如果a有一个标题,那么是一个site_content,它包含div内容和侧边栏,然后是一个粘性页脚。
这是我的代码:
HTML:
<!DOCTYPE HTML>
<html>
<head>
<title>Turismo Murtoseiro</title>
<meta http-equiv="content-type" content="text/html; charset=windows-1252" />
<link rel="stylesheet" type="text/css" href="style.css" title="style" />
</head>
<body>
<div class="wrapper">
<div id="header">
<div id="logo"></div>
<div id="menubar">
<ul id="menu">
<!-- put class="selected" in the li tag for the selected page - to highlight which page you're on -->
<li class="selected"><a href="index.html">Home</a></li>
<li><a href="ilustracao.html">Cafés</a></li>
<li><a href="3d.html">Restaurantes</a></li>
<li><a href="video.html">Hotéis</a></li>
<li><a href="video.html">Pensões</a></li>
<li><a href="contacto.html">Contacto</a></li>
</ul>
</div>
</div>
<div id="site_content">
<div id="sidebar">
<!-- insert your sidebar items here -->
trujytkyukliyluilouiluiol </div>
<div id="content">
<!-- insert the page content here -->
<h1>Pedro Fidalgo - freelancer</h1>
<div>
<p> O meu nome é Pedro Fidalgo, e estudo na área de Multimédia, na escola Padre António Morais da Fonseca, na Murtosa.</p>
</div>
</div>
</div>
<div class="push"></div>
</div>
<div id="footer" class="footer">
Copyright © Pedro Fidalgo 2011</div>
</body>
</html>
CSS:
* {margin:0;
padding:0;
}
html, body {height: 100%;
font: normal .80em 'trebuchet ms', arial, sans-serif;
}
p
{
padding: 0 0 20px 0;
line-height: 1.7em;
color: #666;
}
.wrapper {
min-height: 100%;
height: auto !important;
height: 100%;
background: #F0EFE2;
margin: 0 auto -30px; /* the bottom margin is the negative value of the footer's height */
}
.footer, .push {
height: 30px; /* .push must be the same height as .footer */
clear: both;
}
h1, h2, h3, h4, h5, h6
{ font: normal 175% 'century gothic', arial, sans-serif;
color: #43423F;
margin: 0 0 15px 0;
padding: 15px 0 5px 0;}
a, a:hover
{ outline: none;
text-decoration: underline;
color: #A4AA04;}
a:hover
{ text-decoration: none;}
.left
{ float: left;
width: auto;
margin-right: 10px;}
.right
{ float: right;
width: auto;
margin-left: 10px;}
.center
{ display: block;
text-align: center;
margin: 20px auto;}
blockquote
{ margin: 20px 0;
padding: 10px 20px 0 20px;
border: 1px solid #E5E5DB;
background: #FFF;}
ul
{ padding: 2px 0 22px 17px;}
ul li
{ list-style-type: circle;
padding: 0 0 4px 5px;}
ol
{ padding: 8px 0 22px 20px;}
ol li
{ padding: 0 0 11px 0;}
#logo, #menubar
{
margin-left: auto;
margin-right: auto;
}
#header
{
height: 150px;
background-color: #708B1A;
}
#logo
{
width: 877px;
position: relative;
height: 100px;
background-color: #003;
background-image: url(images/logo.png);
background-repeat: no-repeat;
}
#menubar
{ width: 877px;
height: 50px;
padding: 0;
background: #29415D url(images/menu.png) repeat-x;}
ul#menu, ul#menu li
{ float: left;
margin: 0;
padding: 0;}
ul#menu li
{ list-style: none;}
ul#menu li a
{ letter-spacing: 0.1em;
font: normal 100% 'lucida sans unicode', arial, sans-serif;
display: block;
float: left;
height: 24px;
padding: 20px 26px 6px 26px;
text-align: center;
color: #FFF;
text-transform: uppercase;
text-decoration: none;
background: transparent;}
ul#menu li a:hover, ul#menu li.selected a, ul#menu li.selected a:hover
{ color: #FFF;
background: #1C2C3E url(images/menu_select.png) repeat-x;}
#site_content
{ width: 837px;
overflow: hidden;
color #000;
height: 100%;
margin: 0 auto 0 auto;
padding: 20px 24px 20px 37px;
background: #FFF url(images/content.png) repeat-y;}
#content
{ text-align: left;
width: 595px;
min-height: 100%;
}
#sidebar
{
float: right;
width: 200px;
padding-top: 0;
padding-right: 15px;
padding-bottom: 30px;
padding-left: 15px;
}
#footer
{ width: 878px;
font: normal 100% 'lucida sans unicode', arial, sans-serif;
height: 30px;
text-align: center;
margin: 0 auto 0 auto;
background: #29425E url(images/footer.png) repeat-x;
color: #FFF;
}
我无法将我的site_content(内容和侧边栏)设为100%..我缺少什么?
答案 0 :(得分:1)
删除所有指定的宽度,例如width: 878px;
,width: 837px;
,width: 877px;
...然后您将其渲染为100%
宽度。
<强> Demo 强>