html id和类格式

时间:2015-10-27 08:14:45

标签: html css

我正在尝试构建一个只显示div的页面。当我尝试使用类或ID作为选择器时,我的元素不会格式化,但是当我使用实际元素作为选择器时,它的格式就好了。

1 个答案:

答案 0 :(得分:2)

我举一个例子:

<div id="centerBox"> 
      <p>Some text for the center div</p> 
 </div>

<div class="centerText"> 
      <p>Some text for the center div</p> 
 </div>

html page centerBox是id(#),centerText是class(。)  例如:

#centerBox {
    background-color:green;
}
.centerText {
     background-color:red;
}
<div id="centerBox"><p>Some text for the center div</p>
</div>
<div class="centerText"><p>Some text for the center div</p>
</div>