CSS 2.1 快速導覽 - 字型粗細 font-weight

font-weight 性質 (property) 為 CSS 中用來設定文字字型的厚度,也就是不同等級的粗體效果,有以下的數值 (value) 可供設定

  • normal
  • bold
  • bolder
  • lighter
  • 100
  • 200
  • 300
  • 400
  • 500
  • 600
  • 700
  • 800
  • 900


但大多數字型只有 normalbold 的分別,舉例如下
.examplenormal {
 font-weight: normal;
}

.examplebold {
 font-weight: bold;
}

.examplebolder {
 font-weight: bloder;
}

.examplelighter {
 font-weight: lighter;
}

.example100 {
 font-weight: 100;
}

.example200 {
 font-weight: 200;
}

.example300 {
 font-weight: 300;
}

.example400 {
 font-weight: 400;
}

.example500 {
 font-weight: 500;
}

.example600 {
 font-weight: 600;
}

.example700 {
 font-weight: 700;
}

.example800 {
 font-weight: 800;
}

.example900 {
 font-weight: 900;
}

/* 《程式語言教學誌》的範例程式
    http://pydoing.blogspot.com/
    檔名:text03.css
    功能:示範 CSS 2.1 樣式表的使用 
    作者:張凱慶
    時間:西元 2011 年 7 月 */


此例中並沒有設定字型體系或名稱,因此會以預設字型顯示,我們以下面的 HTML 文件載入
<html lang="en">
<head>
<title>網頁標題</title>
<link rel="stylesheet" type="text/css" 
      href="text03.css">
</head>
<body>
<p class="examplenormal">
Free your mind.
</p>
<p class="examplebold">
Free your mind.
</p>
<p class="examplebolder">
Free your mind.
</p>
<p class="examplelighter">
Free your mind.
</p>
<p class="example100">
Free your mind.
</p>
<p class="example200">
Free your mind.
</p>
<p class="example300">
Free your mind.
</p>
<p class="example400">
Free your mind.
</p>
<p class="example500">
Free your mind.
</p>
<p class="example600">
Free your mind.
</p>
<p class="example700">
Free your mind.
</p>
<p class="example800">
Free your mind.
</p>
<p class="example900">
Free your mind.
</p>
</body>
</html>

<!-- 《程式語言教學誌》的範例程式
     http://pydoing.blogspot.com/
     檔名:text02.html
     功能:示範 CSS 2.1 樣式表的使用 
     作者:張凱慶
     時間:西元 2011 年 7 月 -->


瀏覽器 (broswer) 開啟如下



中英文術語對照
性質property
數值value
瀏覽器broswer


您可以繼續參考

JavaScript 範例

文字相關


相關目錄
CSS 2.1 快速導覽
HTML, CSS 教材
首頁


參考資料
http://www.w3.org/TR/CSS21/fonts.html
https://developer.mozilla.org/en/CSS/font-weight

沒有留言: