HTML与CSS的文本

128 阅读1分钟

文本

color
body {
    color:blue;
} 
h1 {
    color:#00ff00;
} 
h2 {
    color:rgb(255,0,0);
}
text-align

​ 设置文本对齐方式,center(居中),left(左对齐),right(右对齐)

body {
    text-align:center;
}	
h1 {
    text-align:right;
} 
h2 {
    text-align:right;
}
text-decoration

​ 规定添加到文本的修饰,属性值:none、underline、overline、line-through

1)underline

​ 对文本添加下划线,与HTML的u元素相同。

2)overline

​ 对文本添加上划线。

3)line-through

​ 对文本添加中划线,与HTML中的s和 strike 元素相同。

4)none

​ 关闭原本应用到元素上的所有装饰。

h3 {
    text-decoration:underline;
}
text-indent

​ 设置文本首行缩进

p.ident2 {
    text-indent: 2em;
}

​ em一个相对值,例如页面的文本大小为17px,则2em就为17px*2