CSS 2.1 快速導覽 - 字型 font

font 性質 (property) 為 CSS 中用來設定文字字型的速記,以下的相關性質都可寫在 font 之內

  • font-style
  • font-variant
  • font-weight
  • font-size
  • line-height
  • font-family
  • caption
  • icon
  • menu
  • message-box
  • small-caption
  • status-bar


形式如
font: font-style font-variant font-weight 
      font-size/line-height font-family


每一項性質都可有可無,或任何一個關鍵字 (keyword)
font: caption | icon | menu | message-box | 
      small-caption | status-bar


舉例如下
.example1 { 
    font: 12px/14px sans-serif; 
}

.example2 { 
    font: 80% sans-serif; 
}

.example3 { 
    font: x-large/110% "New Century Schoolbook", serif;
}

.example4 { 
    font: bold italic large Palatino, serif; 
}

.example5 { 
    font: normal small-caps 120%/120% fantasy;
}

.example6 { 
    font: italic small-caps 150%/120% cursive;
}

.example7 { 
    font: 300 italic 1.3em/1.7em "FB Armada", sans-serif;
}

.example8 { 
    font: menu;
}

.example9 { 
    font: status-bar;
}


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


我們以下面的 HTML 文件載入
<html>
<head>
<title>網頁標題</title>
<link rel="stylesheet" type="text/css" 
      href="text09.css">
</head>
<body>
Free your mind.
<div class="example1">
Free your mind.
</div>
<div class="example2">
Free your mind.
</div>
<div class="example3">
Free your mind.
</div>
<div class="example4">
Free your mind.
</div>
<div class="example5">
Free your mind.
</div>
<div class="example6">
Free your mind.
</div>
<div class="example7">
Free your mind.
</div>
<div class="example8">
Free your mind.
</div>
<div class="example9">
Free your mind.
</div>
</body>
</html>

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


瀏覽器 (broswer) 開啟如下



中英文術語對照
關鍵字keyword
函數function
瀏覽器broswer


您可以繼續參考

JavaScript 範例

文字相關


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


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

沒有留言: