CSS 语法

https://www.w3school.com.cn/css/pro_css_syntax.asp

 

CSS 语法

 

选择器指向您需要设置样式的 HTML 元素

p {
  color: red;
  text-align: center;
}

  

CSS 选择器

CSS 选择器用于“查找”(或选取)要设置样式的 HTML 元素。

CSS 选择器分为五类:

 

CSS 元素选择器

p {
  text-align: center;
  color: red;
}

页面上的所有 <p>元素都将居中对齐,并带有红色文本颜色

元素选择器又称为类型选择器,类型选择器匹配文档语言元素类型的名称。类型选择器匹配文档树中该元素类型的每一个实例。

也可以为 XML 文档中的元素设置样式:

XML 文档:

<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet type="text/css" href="note.css"?>
<note>
<to>George</to>
<from>John</from>
<heading>Reminder</heading>
<body>Don‘t forget the meeting!</body>
</note>

CSS 文档:

note
  {
  font-family:Verdana, Arial;
  margin-left:30px;
  }

to
  {
  font-size:28px;
  display: block;
  }

from
  {
  font-size:28px;
  display: block;
  }

heading
  {
  color: red;
  font-size:60px;
  display: block;
  }

body
  {
  color: blue;
  font-size:35px;
  display: block;
  }
更多关于为 XML 文档添加样式的知识,请访问 w3school 的 XML 教程

CSS id 选择器

#para1 {
  text-align: center;
  color: red;
}

元素的 id 在页面中是唯一的,因此 id 选择器对应唯一的元素!

这条 CSS 规则将应用于 id="para1" 的 HTML 元素:


CSS 类选择器

.center {
  text-align: center;
  color: red;
}

所有带有 class="center" 的 HTML 元素将为红色且居中对齐 , 多个HTML 元素可以具有同一个class

 

CSS元素选择器.类选择器

p.center {
  text-align: center;
  color: red;
}

只有具有 class="center" 的 <p> 元素会居中对齐


HTML 元素引用多个类


<!DOCTYPE html>
<html>
<head>
<style>
p.center {
  text-align: center;
  color: red;
}

p.large {
  font-size: 300%;
}
</style>
</head>
<body>
<h1 class="center">这个标题不受影响</h1>
<p class="center">本段将是红色并居中对齐。</p>
<p class="center large">本段将是红色、居中对齐,并使用大字体。</p> 
</body>
</html>

CSS 通用选择器

* {
  text-align: center;
  color: blue;
}

会影响页面上的每个 HTML 元素。

CSS 分组选择器

h1, h2, p {
  text-align: center;
  color: red;
}

 

CSS 语法

上一篇:学习 MVC,EF 完成跨域


下一篇:给图片添加渐变透明效果|c3镜像渐变