首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > CSS >

为何在里面那一层显示不了蓝色的背景

2013-07-01 
为什么在里面那一层显示不了蓝色的背景html xmlnshttp://www.w3.org/1999/xhtml xml:langen lang

为什么在里面那一层显示不了蓝色的背景
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<meta name="author" content="Com" />

<title>无标题 1</title>
</head>
<style>
body{
    background-color:red;
}
.content{
    padding:40px;
    float:left;
    background-color:blue;
}
</style>
<body>

<div id="content">
<a>没有蓝色</a>
</div>

</body>
</html>
[解决办法]


<div id="content">
<a>没有蓝色</a>
</div>
---------------------
<div class="content">
<a>没有蓝色</a>
</div>
[解决办法]
选择器写错了,要用
.content a(注意这里){
   

热点排行