美文网首页
CSS文本排版

CSS文本排版

作者: 小凡凡520 | 来源:发表于2019-07-30 14:58 被阅读0次

字体
font-family: "Microsoft Sans Serif";

字号
font-size: 100px !important;

字色
color:red

粗体
font-weight: bold;

斜体
font-style: italic;

下划线
text-decoration: underline;

删除线
text-decoration:line-through;

缩进
text-indent: 200px;

行高
line-height: 100px;

字间距
letter-spacing: 50px;

对齐
text-align: center;

字体颜色
color: blue;
color: rgb(100,100,100);
color: rgb(100% ,100%,100%);
color: #369;

图片
background: url("1.png") repeat;

圆角
border-radius: 4px;

阴影
box-shadow: 4px 2px 5px red;

相关文章

网友评论

      本文标题:CSS文本排版

      本文链接:https://www.haomeiwen.com/subject/qrknrctx.html