用这种方法在CSS中创建类是正确的吗?

时间:2014-10-13 14:17:36

标签: html css

CSS

  

.first {color:red; }

HTML

<class id=first> 
<p> some text </p> 
<p> some other text </p> 
</class>

这是对的吗?

2 个答案:

答案 0 :(得分:1)

这是基本的HTML / CSS,我真的不相信,你做了一些研究。无论如何,这是如何运作的:

CSS

#first {
    Color: red;
}

HTML

<div id="first"> 
    <p> some text </p> 
    <p> some other text </p> 
</div>

如果你想为你的课程设置风格,你必须写.first,为ID#sirst

编辑:我的想法在哪里?类Tag不是有效的HTML标记,例如,如果需要包装器,可以使用div标签。顺便说一句:ID必须是唯一的,如果你想要设置多个div的红色,请使用这样的类:

<div class="first"> 
    <p> some text </p> 
    <p> some other text </p> 
</div>

答案 1 :(得分:0)

对于那个css,你需要

<p class='first'></p>