日期:2014-05-17 浏览次数:20769 次
.bar {
width: 960px;
line-height: 30px;
background: blue;
color: white;
font-weight: bold;
}
.navi {
width: 960px;
padding: 5px;
background: green;
color: white;
font-weight: bold;
}
.style1 {color: white; width: 500px;}
.style2 {font-weight: bold; line-height:30px;}
<div class="bar">Here is some text</div>
<div class="style1">这个DIV的class中的XXX无关紧要</div>
<div class="style2">这个DIV的class中的XXX无关紧要</div>
<div class="navi">Here is some text</div>
.text_white {color:white;} .text_bold {font-weight: bold;} .width_960 {width: 960px;}
.bar {
line-height: 30px;
background: blue;
}
.navi {
padding: 5px;
background: green;
}
.style1 {width: 500px;}
.style2 {line-height:30px;}
<div class="bar text_white text_bold width_960">Here is some text</div>
<div class="style1 text_white">这个DIV的class中的XXX无关紧要</div>
<div class="style2 text_bold">这个DIV的class中的XXX无关紧要</div>
<div class="navi text_white text_bold width_960">Here is some text</div>