Heim >Web-Frontend >HTML-Tutorial >CSS 类选择器(四)_html/css_WEB-ITnose

CSS 类选择器(四)_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 11:46:301534Durchsuche

一、类选择器

类选择用使用"."(英文点号)进行标识,后面紧跟类名

如:

.red{color:red;}

类样式可以应用于文档中的多个元素,这体现了CSS代码的可重用性,帮助用户简化页面控制。

二、类选择器与标签选择器

类选择器和标签选择器都具有一对多的特性,即一个样式可以控制多个元素对象的显示效果。

注意事项:

  • 与标签选择器相比,类选择器具有更好的适应性和灵活性,因为可以指定类的样式所应用的元素对象范围
  • 与类选择器相比,标签选择器具操作简单、定义方便的优势,因为不需要为每个元素都定义相同的class属性,而使用类选择器之前,需要在HTML文档中为要应用类样式的元素定义class属性,这亲就显示重比较麻烦。
  • 标签选择器适合为元素定义全局显示属性,而类选择器,更适合定义类样式,定义了标签选择器的样式之后,肯定会对页面中同一个元素产生影响,而类选择器定义的样式会出现不被应用的情况,具有更大的机动性。
  • <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>伪类和伪对象选择器</title><link type="text/css" rel="stylesheet" href="css/demo4.css"/></head><body><div></div><div class="red"></div></body></html>

    css

    @charset "utf-8";/* CSS Document */div{    width:400px;    height:200px;    background-color:blue;    }.red{background-color:red;}

    结果:

    三、类选择器与ID选择器

    类选择器与ID选择器除了应用范围不同外,它们的优先级也不同,在同等条件下ID选择器比类选择器具有更大的优先权

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>伪类和伪对象选择器</title><link type="text/css" rel="stylesheet" href="css/demo4.css"/></head><body><div id="text" class="red"></div></body></html>

    CSS

    @charset "utf-8";/* CSS Document */div{    width:400px;    height:200px;    }#text{    background-color:blue;    }.red{background-color:red;}

    div将显示为蓝色

    一般来讲:

    ID选择器:应用用体现文档的结构和位置,如#header,#footer,#left等,

    类选择器:class属性就应该体现名称的样式描述性,使一看类名就了解要定义的样式,如.red,定义一个红色的类,.underline定义一个下划线的类等 

     

    Stellungnahme:
    Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn