css控制段落效果

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>css控制段落,总结css控制段落的其他功能</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description" content="布尔教育 http://www.itbool.com" />
<style>
    #p1{
        background: gray;
        text-indent: 20px;/*行缩进*/
        text-align: center;/*居中*/
    }

    #p2{
        background: orange;
        text-decoration: underline;/*下划线 文本装饰*/
        letter-spacing: 5px;/*字符之间的控制*/
    }

</style>
</head>
    <body>
        <p id="p1">hello,world</p>
        <p id="p2">我是adustdu2015</p>
    </body>
</html>

你可能感兴趣的:(css控制段落效果)