首页 > 开发 > CSS > 正文

div#sidebar{}与#sidebar div{}的区别介绍

2024-07-11 08:28:58
字体:
来源:转载
供稿:网友

复制代码
代码如下:
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>overflow属性用法</title>
<style type="text/css">
div#sidebar { background-color:blue;
}
#sidebar div{ background-color:red;
}
</style>
</head>
<body>
<div>
<div id="sidebar">我是蓝色
<div>我是红色</div>
</div>
</div></div></body>
</html>
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表