常用文本属性

常用文本属性

aoday is a beautiful day !

spring is coming !

happy New Chinese Year !

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title>常用文本属性</title>

    <style>
        #id1{
            color: blue;
            letter-spacing: 2px;
            word-spacing: 5px;
            text-transform: capitalize;
            text-align: center;
            text-decoration: line-through;
            line-height: 20px;
        }

        #id2{
            color: red;
            text-align: left;
            text-decoration: overline;
            text-decoration: underline;
            text-indent: 20px;
            font-size: 20px;
        }
    </style>
</head>
<body>
    <p id="id1">aoday is a beautiful day !</p>
    <p id="id2">spring is coming !</p>
    <p id="id3">happy New Chinese Year !</p>
</body>
</html>

  

posted @ 2017-02-15 09:34  john。  阅读(242)  评论(0编辑  收藏  举报