1. 程式人生 > >13 css中文字排版

13 css中文字排版

class 排版 col log 標題 文字 批評 head css

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>無標題文檔</title>
<style type="text/css">
body{font-size:12px;color:#666;}
.stress{
    color:red;
    }
</style>
</head>

<body>
    <h1>勇氣</h1>
    <p>
    三年級時,我還是一個<span class="stress">膽小如鼠</span>的小女孩,上課從來不敢回答老師提出的問題,生怕回答錯了老師會批評我。
    </p>
    <p>
    到了三年級下學期,我們班上了一節公開課
    </p>

</body>
</html>
    

13 css中文字排版