我想適合我的網站瀏覽器我試過這個,當我嘗試「寬度= 100% 高度= 100%」身體的CSS它確實,當我試圖與容器的div它有點消失意味着背景顏色是沒有看到如何用CSS調整100%的瀏覽器高度和寬度?
這是HTML:
<html>
<head>
<title>Untitled</title>
<link href="css/stylesheet1.css" rel="stylesheet" type="text/css"/>
<link rel="icon" type="image/x-icon" href="images/favicon.ico" /></head>
</head>
<body>
<div id="container">
<div id="header">
<div class="logo">
<div id="logo">Logo</span></div>
</div><!--Logo-->
<div class="search-bar">Search BAr</div>
</div>
</div>
</body>
</html>
這是CSS
body{
width:100%;
height:100%;
margin: 0;
background:#CCC;
}
#container{
width:100%;
height:100%;
margin:0 auto;
background:#000;
}
#header{
width:100%;
height:12%;
float:left;
background:#F00;
}
.logo{
width:50%;
height:100%;
float:left;
background:#0F0;
}
.search-bar{
width:50%;
height:100%;
float:left;
color:#FFF;
font-family: 'century gothic';
text-align:center;
margin-top:20px;
}
#logo
{
width:100%;
height:100%;
float:left;
font-size:48px;
color:#FFF;
font-family: 'century gothic';
text-align:center;
margin-top:20px;
}
我麻煩幫我plzzz
你能舉個例子嗎? – Radioactive
@Radioactive檢查這個http://jsfiddle.net/tilwinjoy/3F3T5/請注意,我已經給出了HTML,身體和容器的高度..如果你刪除任何高度屬性,其中的'%'中有高度的子元素沒有任何身高.. –
我應該改變什麼? 身體寬度:100%; 身高:100%; margin:0; 背景:#CCC; } #容器{ 寬度:100%; 身高:100%; margin:0 auto; 背景:#000; } – Radioactive