CSS——文本样式

  1. 颜色 color rgb rgba
    2.文本对齐的方式 text-align:center;
    3.首行缩进 text-indent:2em;
    4.行高 line-height: 单行文字上下居中! line-height:height;
    5.装饰 text-decoration
    6.文本图片水平对齐: vertical-align:middle;
h1{
    color:rgba(0,255,255,0.9);
    text-align:center;
}
.p1{
    text-indent:2em;
}
.p3{
    background:gray;
    height:300px;
    line-height:300px;
}
/*下划线*/
.one{
     text-decoration:underline;
}
/*中划线*/
.two{
     text-decoration:overline;
}
/*超链接去掉下划线*/
.three{
     text-decoration:none;
}

/*水平对齐*/
img,span{
    vertical-align:middle;
}

CSS——文本样式

CSS——文本样式

上一篇:node文件上传server


下一篇:Nginx网站服务 配置