CSS語(yǔ)句的編寫(xiě)是網(wǎng)頁(yè)開(kāi)發(fā)中不可或缺的一部分,它可以幫助我們輕松地控制網(wǎng)頁(yè)的外觀和布局,下面是一些基本的CSS語(yǔ)句示例,讓你快速上手。
1、設(shè)置背景顏色:
```css
body {
background-color: #f0f0f0;
}
```
2、設(shè)置字體樣式:
```css
p {
font-family: Arial, sans-serif;
font-size: 16px;
color: #333;
}
```
3、設(shè)置邊框:
```css
div {
border: 1px solid #000;
}
```
4、設(shè)置內(nèi)邊距:
```css
h1 {
padding: 20px 0;
}
```
5、設(shè)置外邊距:
```css
h2 {
margin: 10px 0;
}
```
6、設(shè)置寬度和高度:
```css
img {
width: 100%;
height: auto;
}
```
7、設(shè)置文本對(duì)齊:
```css
li {
text-align: left;
}
```
8、設(shè)置背景圖片:
```css
body {
background-image: url('path/to/image.jpg');
background-repeat: no-repeat;
background-size: cover;
}
```
9、設(shè)置圓角:
```css
div {
border-radius: 10px;
}
```
10、設(shè)置陰影:
```css
div {
box-shadow: 10px 10px 5px #888888;
}
```
```css
a {
text-decoration: none; /* 去除鏈接下劃線 */
}
```
```css
ul { /* 設(shè)置列表樣式為圓點(diǎn) */ list-style-type: circle; }
```