文本格式设置文本的颜色、方向、间距、行高等等
文本格式
This text is styled with some of the text formatting properties. The heading uses the text-align, text-transform, and color properties. The paragraph is indented, aligned, and the space between characters is specified. The underline is removed from the link.
CSS文本属性
属性 | 描述 |
---|---|
color | 设置文本颜色 |
direction | 设置文本方向。 |
letter-spacing | 设置字符间距 |
line-height | 设置行高 |
text-align | 对齐元素中的文本 |
text-decoration | 向文本添加修饰 |
text-indent | 缩进元素中文本的首行 |
text-shadow | 设置文本阴影 |
text-transform | 控制元素中的字母 |
unicode-bidi | 设置或返回文本是否被重写 |
vertical-align | 设置元素的垂直对齐 |
white-space | 设置元素中空白的处理方式 |
word-spacing | 设置字间距 |
文本颜色
颜色属性被用来设置文字的颜色。
颜色是通过CSS最经常的指定:
- 十六进制值 - 如: #FF0000
- 一个RGB值 - 如: RGB(255,0,0)
- 颜色的名称 - 如: red
对于W3C标准的CSS:如果你定义了颜色属性,你还必须定义背景色属性。
文本的对齐方式
文本排列属性是用来设置文本的水平对齐方式。
文本可居中或对齐到左或右,两端对齐.
当text-align设置为"justify",每一行被展开为宽度相等,左,右外边距是对齐(如杂志和报纸)。
文本对齐实例
<style>
h1 {text-align:center;}
p.date {text-align:right;}
p.main {text-align:justify;width:100px;}
</style>
<body>
<h1>hello world</h1>
<p class="date">2100-13-32</p>
<p class="main">我通过在Python-XP.com完成了Python、html、css、mysql等等学习,并且通过在线测验获得等级证书</p>
</body>
文本修饰
text-decoration
属性用来设置或删除文本的装饰。
从设计的角度看 text-decoration
属性主要是用来删除链接的下划线:
文本修饰实例1
<style>
a.none {text-decoration:none;}
</style>
<a href="python-xp.com" class="none">最棒的Python全栈学习站点</a>
<a href="python-xp.com">最棒的Python全栈学习站点</a>
也可以这样装饰文字:
文本修饰实例2
<style>
h1 {text-decoration:overline;}
h2 {text-decoration:line-through;}
h3 {text-decoration:underline;}
</style>
<body>
<h1>Python-XP.com</h1>
<h2>Python-XP.com</h2>
<h3>Python-XP.com</h3>
</body>
我们不建议强调指出不是链接的文本,因为这常常混淆用户。
文本转换
文本转换属性是用来指定在一个文本中的大写和小写字母。
可用于所有字句变成大写或小写字母,或每个单词的首字母大写。
文本转换实例
<style>
p.uppercase {text-transform:uppercase;}
p.lowercase {text-transform:lowercase;}
p.capitalize {text-transform:capitalize;}
</style>
<body>
<p >Hello world</p>
<p class="uppercase">Hello world</p>
<p class="lowercase">Hello world</p>
<p class="capitalize">Hello world</p>
</body>
文本缩进
文本缩进属性是用来指定文本的第一行的缩进。
文本缩进实例
<style>
p.indent {text-indent:50px;}
</style>
<p class="indent">hello world</p>
<p>hello world</p>
文本间距
文本间距可以控制文字之间的间距
文本间距示例
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Python-XP.com-轻松学</title>
<style>
h1 {letter-spacing:2px;}
h2 {letter-spacing:-3px;}
</style>
</head>
<body>
<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
</body>
</html>
行高属性
line-height属性可以控制行与行之间的间隔
行高设置示例
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Python-xp.com</title>
<style>
p.small {line-height:70%;}
p.big {line-height:200%;}
</style>
</head>
<body>
<p>
这是一个标准行高的段落。<br>
这是一个标准行高的段落。<br>
大多数浏览器的默认行高约为110%至120%。<br>
</p>
<p class="small">
这是一个更小行高的段落。<br>
这是一个更小行高的段落。<br>
这是一个更小行高的段落。<br>
这是一个更小行高的段落。<br>
</p>
<p class="big">
这是一个更大行高的段落。<br>
这是一个更大行高的段落。<br>
这是一个更大行高的段落。<br>
这是一个更大行高的段落。<br>
</p>
</body>
</html>
文本与图像对齐
网页排版经常会碰到文字与图像对齐的问题
使用vertical-align可以对齐
与图像对齐示例
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>python-xp.com</title>
<style>
img.top {vertical-align:text-top;}
img.bottom {vertical-align:text-bottom;}
</style>
</head>
<body>
<p><img src="/uploads/2022/1/c16c2755-a09a-4b6c-8262-2a96d0079b4c.png
" />默认对齐的图像。</p>
<p>一个<img class="top" src="/uploads/2022/1/c16c2755-a09a-4b6c-8262-2a96d0079b4c.png
" />text-top 对齐的图像。</p>
<p>一个<img class="bottom" src="/uploads/2022/1/c16c2755-a09a-4b6c-8262-2a96d0079b4c.png
"/> text-bottom 对齐的图像。</p>
</body>
</html>
文字阴影效果
通过可以轻松的实现文字阴影效果
文字阴影效果示例
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>python-xp.com</title>
<style>
h1 {text-shadow:2px 2px #FF0000;}
</style>
</head>
<body>
<h1>Python-XP.com 效果</h1>
<p><b>注意:</b> Internet Explorer 9 以及更早的浏览器不支持 text-shadow 属性。</p>
</body>
</html>
讨论区