CSS文本

CSS 文本属性可定义文本的外观。
通过文本属性,您可以改变文本的颜色、字符间距,对齐文本,装饰文本,对文本进行缩进,等等。

属性 描述
color 设置文本颜色
direction 设置文本方向。
line-height 设置行高。
letter-spacing 设置字符间距。
text-align 对齐元素中的文本。
text-decoration 向文本添加修饰。
text-indent 缩进元素中文本的首行。
text-shadow 设置文本阴影。CSS2 包含该属性,但是 CSS2.1 没有保留该属性。
text-transform 控制元素中的字母。
unicode-bidi 设置文本方向。
white-space 设置元素中空白的处理方式。
word-spacing 设置字间距。

案例:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>演示CSS文本属性</title>
<style type="text/css">
	body{
		/*文本颜色*/
		color:red;
		/*字符间距*/
		letter-spacing: 5px;
		/*对齐方式*/
		text-align: center;
		/*修饰*/
		/*text-decoration: underline;*/
		/*词间距。  每个单词之间使用空格键区分*/
		word-spacing: 20px;
	}
	
	span{
		text-decoration:line-through;
	}
</style>
</head>
<body>
	一点教程网 http://www.yiidian.com  原价:<span>50元</span> 现价:36元
</body>
</html>

效果:

 

热门文章

优秀文章