有一系列屬性可以改變網頁文字的大小和形狀,概要如下:
font-family 文字使用的字體,比如宋體,Times New Roman,Arial等等
這個屬性必須詳細制定,不能使用偏僻的字體,要使用安全字體(比如arial,verdana和times new roman和宋體),可以同時指定許多字體,只要使用逗號分開即可。這樣的用意是,如果用戶電腦裡沒有第一個字體浏覽器可以使用後面指定的字體。這非常有用,因為不同的電腦擁有不同的字體。例子font-size: arial,helvetica,pc用戶可以使用arial而蘋果mac用戶可以使用helvetica。
注意:如果字體的名稱有許多單詞組成,使用雙引號組合,比如,font-family: "Times New Romes"。
font-size 字體的大小,要小心使用。比如標題不會和段落一樣,它要用大字體,你可以使用h1h2等等。
font-weight 這個屬性決定字體是否加粗。在實際運用中通常使用font-weight: bold或font-weight: normal。理論上還可以使用bolder,lighter,100,200, 300, 400, 500, 600, 700, 800 or 900,但有些浏覽器不認,仍堅持bold和normal。
font-style 這個屬性決定字體是否是斜體,可能是font-style: italic或font-style: normal。
text-decoration 這個屬性決定是文本否需要下劃線。可以是:
text-decoration: overline,加上劃線
text-decoration: line-through,加通過文本的線條。
text-decoration:underline,這應該使用在鏈接上,因為用戶習慣認為它代表鏈接。
text-transform改變文本的情況。
text-transform: capitalize ,讓每個字的第一個字母大寫。
text-transform: uppercase ,所有大寫。
text-transform: lowercase,所有小寫。
text-transform: none; ,這個屬性不起作用。
body {
font-family: arial, helvetica, sans-serif;
font-size: 0.8em;
}
h1 {
font-size: 2em;
}
h2 {
font-size: 1.5em;
}
a {
text-decoration: none;
}
strong {
font-style: italic;
text-transform: uppercase;
}
Text spacing letter-spacing和word-spacing屬性的意思是字母和文字之間的間隔。值可以是長度或normal。
line-height屬性設定元素的行高,比如一個段落,沒有調准字體的大小。它可以是數字(字體大小的倍數),長度,百分比或normal。
text-align設定元素位置,left,right,center或justify。
text-indent屬性縮進段落的首行。這在打印時經常設置,但網頁裡通常用不上。
p {
letter-spacing: 0.5em;
word-spacing: 2em;
line-height: 1.5;
text-align: center;
}