<style
type="text/css">
.blue{
background-color:Blue
}
.yellow{
background-color:Yellow
}
</style>
还想要什么颜色自己再写就行了,然后哪个<div>里想要什么颜色,将<div>的class属性设成对应的CSS名称就行了。例如<div
class="blue">这个<div>背景就是蓝的,这样写方便以后再修改,不必修改每一个<div>,只需要修改<style>里定义的代码就行了
虽然没有图,但我想你要的效果应该是这样,运行一下代码吧:<html>
<head>
<meta http-equiv="Content-Type" content="text/htmlcharset=utf-8" />
<title>example</title>
<style type="text/css">
<!--
body{ font-size:12pxtext-align:center}
.page{ margin:0 autowidth:1000px}
.div1{ background:#bbbheight:100pxwidth:100%}
.div2{ background:#dddheight:100pxwidth:100%}
.div3{ background:#cccfloat:leftheight:500pxwidth:100px}
.div4{ background:#eeefloat:leftheight:500pxwidth:900px}
-->
</style>
</head>
<body>
<div class="page">
<div class="div1">div1</div>
<div class="div2">div2</div>
<div class="div3">div3</div>
<div class="div4">div4</div>
</div>
</body>
</html>