手记

html文字样式小结

文字排版-字体

body{
font-family:"宋体";
}

字号、颜色

body{
font-size:10px;
color:#666;
}

注意没有引号

粗体

body{
font-weight:bold;
}

斜体

body{
font-style:italic;
}

下划线

p{
text-decoration:underline;

删除线

span{
text-decoration:line-through;
}

缩进

p{text-indent:2em;}

行间距(行高)

p{line-height:1.5em;}

中文字间距、字母间距

h1{
    letter-spacing:50px;            /*设置文字间隔或者字母间隔*/
}

h1{
    word-spacing:50px;             /*设置字母与字母之间的间距*/
}

对齐

h1{
  text-align:center;
 text-align:left;
 text-align:right;
}
14人推荐
随时随地看视频
慕课网APP

热门评论

这是不是css?

!

这是html5吗

查看全部评论