CSS 文本格式
# CSS 文本格式
# 1. 文本颜色
颜色属性被用来设置文字的颜色。常用的方式有三种:
- 十六进制值 - 如: #FF0000
- RGB值 - 如: rgb(255,0,0)
- 颜色名称 - 如: red
参阅 CSS 颜色值 (opens new window) 查看完整的颜色值列表。
在以下示例中,页面背景颜色由 body 选择器定义,标题和段落的文本颜色分别使用了不同的方式进行设置:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
<style>
body {color: red;}
h1 {color: #00ff00;}
p.ex {color: rgb(0, 0, 255);}
</style>
</head>
<body>
<h1>这是标题 1</h1>
<p>这是一个普通的段落。请注意,本文是红色的。页面中定义默认的文本颜色选择器。</p>
<p class="ex">这是一个类为"ex"的段落。这个文本是蓝色的。</p>
</body>
</html>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 2. 文本对齐方式
text-align 属性用于设置文本的水平对齐方式。可选的值包括:
left
:左对齐(默认值)right
:右对齐center
:居中对齐justify
:两端对齐(如杂志和报纸)
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
<style>
h1 {text-align: center;}
p.date {text-align: right;}
p.main {text-align: justify;}
</style>
</head>
<body>
<h1>CSS text-align 实例</h1>
<p class="date">2015 年 3 月 14 号</p>
<p class="main">“当我年轻的时候,我梦想改变这个世界;当我成熟以后,我发现我不能够改变这个世界,我将目光缩短了些,决定只改变我的国家;当我进入暮年以后,我发现我不能够改变我们的国家,我的最后愿望仅仅是改变一下我的家庭,但是,这也不可能。当我现在躺在床上,行将就木时,我突然意识到:如果一开始我仅仅去改变我自己,然后,我可能改变我的家庭;在家人的帮助和鼓励下,我可能为国家做一些事情;然后,谁知道呢?我甚至可能改变这个世界。”</p>
<p><b>注意:</b> 重置浏览器窗口大小查看 "justify" 是如何工作的。</p>
</body>
</html>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 3. 文本修饰
text-decoration 属性用于设置或删除文本的装饰效果,常见的值包括:
none
:无装饰(常用于删除链接的下划线)underline
:下划线overline
:上划线line-through
:删除线
以下示例展示了如何删除链接的下划线:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
<style>
a {text-decoration: none;}
</style>
</head>
<body>
<p>链接到: <a href="http://www.runoob.com/">runoob.com</a></p>
</body>
</html>
1
2
3
4
5
6
7
8
9
10
11
12
13
2
3
4
5
6
7
8
9
10
11
12
13
以下示例展示了其他文本装饰效果:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
<style>
h1 {text-decoration: overline;}
h2 {text-decoration: line-through;}
h3 {text-decoration: underline;}
</style>
</head>
<body>
<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
</body>
</html>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 4. 文本转换
text-transform 属性用于控制文本的大小写转换,常见的值包括:
uppercase
:将文本转换为大写lowercase
:将文本转换为小写capitalize
:将每个单词的首字母大写
以下示例展示了三种不同的文本转换效果:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
<style>
p.uppercase {text-transform: uppercase;}
p.lowercase {text-transform: lowercase;}
p.capitalize {text-transform: capitalize;}
</style>
</head>
<body>
<p class="uppercase">This is some text.</p>
<p class="lowercase">This is some text.</p>
<p class="capitalize">This is some text.</p>
</body>
</html>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 5. 文本缩进
text-indent 属性用于设置文本第一行的缩进,常见的值包括具体的长度值(如 50px
)和百分比(如 5%
)。
以下示例展示了文本缩进效果:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
<style>
p {text-indent: 50px;}
</style>
</head>
<body>
<p>In my younger and more vulnerable years my father gave me some advice that I've been turning over in my mind ever since. 'Whenever you feel like criticizing anyone,' he told me, 'just remember that all the people in this world haven't had the advantages that you've had.'</p>
</body>
</html>
1
2
3
4
5
6
7
8
9
10
11
12
13
2
3
4
5
6
7
8
9
10
11
12
13
# 6. CSS 文本属性汇总
以下是常见的 CSS 文本属性:
color
:设置文本颜色text-align
:设置文本的水平对齐方式text-decoration
:设置文本的装饰效果text-transform
:设置文本的大小写转换text-indent
:设置文本的缩进line-height
:设置文本的行高letter-spacing
:设置文本的字符间距word-spacing
:设置文本的单词间距direction
:设置文本的书写方向(如ltr
、rtl
)
编辑此页 (opens new window)
上次更新: 2024/12/28, 18:32:08