css文字樣式中屬性的介紹(附代碼)

來源:互聯網
上載者:User
本篇文章給大家帶來的內容是關於css文字樣式中屬性的介紹(附代碼),有一定的參考價值,有需要的朋友可以參考一下,希望對你有所協助。

1、設定文字字型——font-family
屬性值建議用英文黑體Arial;
微軟雅黑 “Microsoft Yahei”;
宋體“SimSun”提高載入速度;
設定可選字型用逗號隔開)

index.html

<!doctype html><html><head>    <meta charset="utf-8"/>    <title>字型</title>    <link href="index.css" type="text/css" rel="stylesheet"/></head><body>    <p>    設定文字字型屬性值建議用英文黑體Arial; 微軟雅黑 “Microsoft Yahei”;    宋體“SimSun”;提高載入速度;設定可選字型用逗號隔開      </p> </body></html>

index.css

p{    font-family:"SimSun";}

2.設定文字大小——font-size
index.css

p{    font-size:21px;}

3.設定文字為粗體——font-weight
屬性值:normal;正常
bold/bolder;加粗
index.css

p{    font-weight:bold;}

4.設定文字為斜體——font-style
屬性值:italic;
index.css

p{    font-style:italic;}

5.設定英文為小型的大寫字母字型
index.css

p{font-variant: small-caps;}

6.設定文字顏色
index.css

p{    color:lightgreen;}

7.設定文字背景顏色
index.css

p{    background-color:lightblue;}
相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.