css格式化排版

css格式化排版

    一、文字排版

        css可以设置网页中的字体、字号、颜色等样式属性

        1、字体
                css样式中为网页设置字体,一般网页默认为宋体,现在一般网页喜欢设置“微软雅黑”
                标签名{font-family:"Microsoft Yahei";}

        2、字号、颜色
                标签名{font-size:xxpx;color:#ccc}

        3、粗体
                标签名{font-weight:bold;}

        4、斜体
                标签名{font-style:italic}

        5、下划线
                标签名{text-decoration:underline;}

        6、删除线
                签名{text-decoration:line-through;}

    二、段落排版
            css对段落样式的设置

        1、缩进
                p{text-indent:2em;}
                    首行缩进两个字符

        2、行间距(行高)
                p{line-height:1.5em;}

        3、中文字间距、字母间距
                p{letter-spacing:xxpx}
                    设置文字或字母间隔

        4、单词间距
                p{word-spacing:xxpx;}

        5、对齐方式
                div{text-algin:lift/right/center}

em倍数 px像素

2018年5月26日11:17:54

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