Home >Web Front-end >HTML Tutorial >css选择器 - 地球小子

css选择器 - 地球小子

WBOY
WBOYOriginal
2016-05-21 08:42:431207browse

一、类选择器:"."类选择器{css样式代码}

1、使用合适标签吧要修饰的内容标记下来。

内容

2、内容

3、.stress{color:red}

注意:英文圆点开头,类选择器可任意名称但不要中文。

二、ID选择器

1、使用合适标签吧要修饰的内容标记下来。

内容

2、内容

3、#id{color:red}

id用#号

注:类选择器可以对HTML文件一个元素设多种样式,而ID选择器只能对元素设置一次。也是唯一一次。

三、元素选择器。

元素选择器选择匹配选择器的网页上的任何HTML元素,不考虑这些元素在文档中的位置。

比如:p{color:bule;}

 

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn