css文字外觀屬性
阿新 • • 發佈:2018-12-05
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>春天</title>
- <style type="text/css">
- div{
- font-family:"宋體";//字型
- font-size:12px;
- color:#0C3;//字型顏色,這是用十六進位制的表示,還可以用單詞表示;
- text-indent:2em;//首行縮排兩個字元;
- }
- h2{
- font-size:16px;
- color:red;//顏色為紅色;
- text-align:center;//居中;
- text-decoration:overline;//上劃線;
- }
- span{color:red;}
- </style>
- </head>
- <body>
- <h2>春天</h2>
- <div><span>春季</span>,地球的北半球開始傾向太陽,受到越來越多的太陽光直射,因而氣溫開始升高。隨著冰雪消融,河流水位上漲。<span>春季</span>植物開始發芽生長,許多鮮花開放。冬眠的動物甦醒,許多以卵過冬的動物孵化,鳥類開始遷徙,離開越冬地向繁殖地進發。許多動物在這段時間裡發情,因此中國也將<span>春季</span>稱為“萬物復甦”的季節。<span>春季</span>氣溫和生物界的變化對人的心理和生理也有影響。</div>
- </body>
- </html>