CSS文本
文本
text-align 对齐元素中的文本 / text-indent 缩进元素中文本的首行
.css【CSS文本】
body{
color: red
}
?
p{
width:300px;
height: 200px;
background-color: aquamarine;
text-align: center; /文本居中/
text-indent: 2em; /首行缩进2/
}
.html
Document - 锐客网
text color testtext color testtext color testtext color testtext color testtext color test
文章图片
image text-transform 控制元素中的字母
.css
body{
color: red
}
?
p{
width:300px;
height: 100px;
background-color: aquamarine;
text-align: center; /文本居中/
text-indent: 2em; /首行缩进2/
}
?
ca{ text-transform: capitalize
/* 首字母大写 */
}
?
up{ text-transform: uppercase
/* 全部大写 */
}
?
low{ text-transform: lowercase
/* 全部小写 */
}
.html
Document - 锐客网
text color testtext color testtext color testtext color testtext color testtext color test
Hello world
Hello world
Hello world
文章图片
image line-height 设置行高
文章图片
image
.css
div{
height:300px;
width: 100px;
background-color:aquamarine;
line-height: 300px;
}
.html
Document - 锐客网
hello world
文章图片
image 文本属性
属性 | 描述 |
---|---|
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 | 设置字间距。 |
推荐阅读
- 标签、语法规范、内联框架、超链接、CSS的编写位置、CSS语法、开发工具、块和内联、常用选择器、后代元素选择器、伪类、伪元素。
- 第二阶段day1总结
- 3.css浮动
- iOS富文本为html时,修改默认字体颜色
- Mac下怎么新建|Mac下怎么新建 .txt 文本文件
- 使用NSAttributedString富文本踩到的坑
- css|我用css精灵图拼接了自己的英文名字,不会还有人不知道精灵图技术吧()
- css|css三角的做法及其案例
- css|css中元素的显示与隐藏
- CSS兼容性笔记