我有CSS下面的HTML代碼:DIV不與指定的背景顏色呈現
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style type="text/css">
div.scroll
{
background-color:#00FFFF;
position:absolute;
top:0%;
left:0%;
width:10%;
height:100%;
}
div.hidden
{
background-color:#00FF00;
position:absolute;
top:0%;
left:50%;
width:20%;
height:100%;
}
div.menu
{
position:absolute;
top:70%;
left:20%;
width:80%;
}
</style>
</head>
<body>
<p>The overflow property specifies what to do if the content of an element exceeds the size of the element's box.</p>
<div class="menu">
<div class="scroll">Scroll: You can use the overflow property when you want to have better control of the layout. The default value is visible.</div>
<div class="hidden">Hidden: You can use the overflow property when you want to have better control of the layout. The default value is visible.</div>
</div>
</body>
正如你可以看到我想要兩個部門的有顏色的 - 他們不和我無法弄清楚爲什麼。該文件有一個html擴展名,我已經使用IE7和FF 3.0.3來測試。
讓我最困惑的是它幾乎是W3C學校的一個例子的逐字拷貝,它確實顯示顏色!鏈接到示例:W3C example。
您在W3School上找到的東西沒有按照您的希望工作就不足爲奇了。見http://w3fools.com – Phrogz
不知道 - 讓我笑起來:) – BigMac66