Html+Css

CSS Text

2018-11-26  本文已影响11人  roy_pub
color

定义文本的颜色,取值有三种方式

line-height

设置行高,单位一般用 px

text-align

设置文本内容的水平对齐

text-indent

设置文本首行缩进,建议使用 em 设置单位。1em 就是一个字的宽度,如果是汉字,1em 就是一个汉字的宽度。

text-decoration

常用于给链接修饰装饰效果

<!DOCTYPE html>
<html lang="en">
<head>
    <style type="text/css">
        .decNone {
            text-decoration: none;
        }

        .decUnderline {
            text-decoration: underline;
        }

        .decOverline {
            text-decoration: overline;
        }

        .decThrough {
            text-decoration: line-through;
        }
    </style>
</head>
<body>
    <p class="decNone">This is china</p>
    <p class="decUnderline">This is china</p>
    <p class="decOverline">This is china</p>
    <p class="decThrough">This is china</p>
</body>
</html>
上一篇下一篇

猜你喜欢

热点阅读