font-family: "Times New Roman", Times, serif;
指定字型
以下為W3C推薦網路通用的安全字型
Arial (sans-serif)
Verdana (sans-serif)
Tahoma (sans-serif)
Trebuchet MS (sans-serif)
Times New Roman (serif)
Georgia (serif)
Garamond (serif)
Courier New (monospace)
Brush Script MT (cursive)
<head>
中,插入<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=填寫要使用的字型">
|
隔開 (注意太多字體會影響網頁速度font-size
文字大小
font-style
主要指定文本為斜體font-style: normal; 正常顯示
font-style: italic; 斜體顯示
font-style: oblique; 傾斜顯示
font-weight
指定字體的粗細font-weight: normal; 普通
font-weight: bold; 粗體
font-variant: small-caps;
指定字體為小型大寫體color: blue;
background-color
text-align: center; 文字置中
text-align: left; 文字置左 (預設)
text-align: right; 文字置右
text-align: justify; 以距邊框,等寬分配單字字距
vertical-align: baseline; (預設)元素對齊父元素基線上
vertical-align: middle; 放置父元素的中部 (
vertical-align: text-top; 把元素的頂端與父元素字體的頂端對齊
vertical-align: text-bottom; 元素的頂端與行中最低的元素的頂端對齊
vertical-align: sub; 垂直對齊文本的下標
vertical-align: super; 垂直對齊文本的上標
//全局屬性//
vertical-align: inherit; 從父元素繼承 vertical-align 屬性的值
vertical-align: initial; 設置屬性的初始值
text-decoration: overline; 上標線
text-decoration: line-through; 刪除線
text-decoration: underline; 下底線
text-decoration: overline underline; 文本上下都加線
text-decoration-color: red; 設定線條顏色
text-decoration-style 設定線條樣式(虛線、波浪線、點點、雙線
text-decoration-thickness: 5px; 設定線條粗細
text-decoration-line(必需的)
text-decoration-color(可選的)
text-decoration-style(可選的)
text-decoration-thickness(可選的)
<!--可以寫成-->
text-decoration: underline red double 5px;
text-decoration: 樣式 顏色 線條的樣式 粗細;
text-decoration: none;
刪除下劃線。text-transform 指定文本內的英文大小寫
text-transform: uppercase; 第一個英文字母大寫
text-transform: lowercase; 所有英文單字都小寫
text-transform: capitalize; 所有英文單字都大寫
text-indent: 50px;文本第一行的縮排
letter-spacing: 5px; 指定字距,可使用複數
line-height: 0.8; 指定行距
word-spacing: 10px; 指定文本中單詞之間
white-space: nowrap; 禁止換行
text-shadow
屬性為文本添加陰影
text-shadow: 2px 2px 5px red;
數值順序為水平陰影+垂直陰影+模糊效果+顏色
font
屬性簡寫以下屬性 :font-style
font-variant
font-weight
font-size/line-height (必需)
font-family (必需)
舉例 : font: italic small-caps bold 12px/30px Georgia, serif;
<head>
中加入 <script src="https://kit.fontawesome.com/yourcode.js" crossorigin="anonymous"></script>
即可使用<head>
中加入 <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
即可使用<head>
中加入 <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
即可使用