继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

html文字样式小结

爱学习滴小学生
关注TA
已关注
手记 13
粉丝 2
获赞 1432

文字排版-字体

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;
}
打开App,阅读手记
14人推荐
发表评论
随时随地看视频慕课网APP

热门评论

这是不是css?

!

这是html5吗

查看全部评论