1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
#A {
background-color: #FC6;
font-family: "Lucida Grande";
line-height: 13px;
font-size: 9px;
width: 300px;
height: 23px;
}
#B {
background-color: #6CF;
float: left;
width: 215px;
}
#C {
background-color: #F6F;
width: 215px;
}
#D {
background-color: #FFF;
height: 1px;
width: 215px;
}
#E {
background-color: #CCC;
width: 215px;
}
</style>
</head>
<body>
<div id="A">
<div id="B">
<div id="C">CCCCC</div>
<div id="D"></div>
<div id="E">EEEEE</div>
</div>
</div> |