CSS格式化排版

文字排版--字体

文字排版--字号、颜色

文字排版--粗体

p span{font-weight:bold;}

文字排版--斜体

p a{font-style:italic;}

文字排版--下划线

p a{text-decoration:underline;}

文字排版--删除线

 .oldPrice{text-decoration:line-through;}

CSS格式化排版_第1张图片

段落排版--缩进

p{text-indent:2em;}

2em的意思就是文字的2倍大小。

段落排版--行间距(行高)

p{line-height:2em;}

段落排版--中文字间距、字母间距

中文字间隔、字母间隔设置:

h1{
    letter-spacing:50px;
}

单词间距设置

h1{
    word-spacing:50px;
}


段落排版--对齐

h1{
    text-align:center;/*text-align:left;    ,text-align:right;*/
}













你可能感兴趣的:(CSS格式化排版)