CSS 基本介绍¶
什么是CSS¶
样式语言用于内容的格式呈现。
需要掌握的内容:¶
单个¶
选择元素
选择类
选择 id
组合¶
.ancestor . child {property: value}
element.class child-element
element child-element
CSS语法¶
Selector {property1: value1; property2: value2}
选择“类”¶
<h1 class="big-header">Title</h1>
<a href="index.html">Home</a>
.class-name {property: value}
<button class="btn btn-1">
button 1
</button>
<button class="btn btn-2">
button 2
</button>
<button class="btn btn-3">
button 3
</button>
.btn {
padding: 10px;
color: white;
}
.bth-1 {background-color: green}
.bth-2 {background-color: blue}
.bth-3 {background-color: purple}
选择 id¶
#id {
property: value;
}
selector1.selector-2 {
property: value;
}
<h1 class="large-heading">Title</h1>
h1.large-header {
font-size: 200%
}
<h2 id="big-blue" class="large blue">Title</h2>
#big-blue.large.blue
参考资源