CSS 2.1 快速導覽 - 字型尺寸 font-size

font-size 性質 (property) 為 CSS 中用來設定文字字型的尺寸,也可以說是大小,可由絕對尺寸 (absolute-size) 、相對尺寸 (relative-size) 、長度單位或百分比來設定。絕對尺寸有以下的關鍵字 (keyword)

  • xx-small
  • x-small
  • small
  • medium
  • large
  • x-large
  • xx-large


相對尺寸有以下的關鍵字
  • smaller
  • larger


舉例如下
body {
    font-size: 16px;
}

.examplexxsmall {
 font-size: xx-small;
}

.examplexsmall {
 font-size: x-small;
}

.examplesmall {
 font-size: small;
}

.examplemedium {
 font-size: medium;
}

.examplelarge {
 font-size: large;
}

.examplexlarge {
 font-size: x-large;
}

.examplexxlarge {
 font-size: xx-large;
}

.examplesmaller {
 font-size: smaller;
}

.examplelarger {
 font-size: larger;
}

.example150 {
 font-size: 150%;
}

.example150 {
 font-size: 50%;
}

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


我們以下面的 HTML 文件載入
<html>
<head>
<title>網頁標題</title>
<link rel="stylesheet" tydive="text/css" 
      href="text04.css">
</head>
<body>
Free your mind.
<div class="examplexxsmall">
Free your mind.
</div>
<div class="examplexsmall">
Free your mind.
</div>
<div class="examplesmall">
Free your mind.
</div>
<div class="examplemedium">
Free your mind.
</div>
<div class="examplelarge">
Free your mind.
</div>
<div class="examplexlarge">
Free your mind.
</div>
<div class="examplexxlarge">
Free your mind.
</div>
<div class="examplesmaller">
Free your mind.
</div>
<div class="examplelarger">
Free your mind.
</div>
<div class="example150">
Free your mind.
</div>
<div class="example50">
Free your mind.
</div>
</body>
</html>

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


瀏覽器 (broswer) 開啟如下



第一行的 Free your mind. 是 <body> 設定的 16px ,這跟後來 .examplemedium 設定的 medium 大小相同。


中英文術語對照
性質property
絕對尺寸absolute-size
相對尺寸relative-size
關鍵字keyword
瀏覽器broswer


您可以繼續參考

JavaScript 範例

文字相關


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


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

沒有留言: