教學建議:css影片教學
CSS字型屬性定義文字的字型系列、大小、粗體、風格(如斜體)和變形(如小型大寫字母)font-family控製字體,由於各個電腦系統安裝的字體不盡相同,但基本上裝有黑體、宋體與微軟雅黑這三款字體。
font-size
控製字體大小,我們設定字體大小是設定它的寬度,它的高度一般電腦系統預設字體大小是16px,所以字體大小盡量不要低於16px, 1em=16px;
font-weight: bold;
/*控製字重一般是100-900 常用lighter(細體) normal(正常)bold加粗*/
至於這個font-style
,一般預設是normal,也就是正常的,如果說你設定 font-style: italic;斜體話,其實和這個907fae80ddef53131f3292ee4f81644bd1c6776b927dc33c5d9114750b586338的效果是差不多的;文字間的間距用的line-height如果和高度相等話,就是垂直居中了。
通常font字體的簡寫:font:style weight size/line-heigt font-family /*要求必須出現的2個是 size與font-family*/
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>css常用样式font字体的多种变换</title> <style> div{ font-family: 'Microsoft YaHei';/*微软雅黑*/ /* font-family: 'Lucida Sans','Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; */ /*字体加上双引号或者单引号,当有多个字体的时候,中间逗号分开*/ color:#f90; font-size: 24px;/*控制字体大小*/ font-weight: bold; /*控制字重 常用lighter(细体) normal(正常)bold加粗 */ font-style: italic;/*等同于em*/ line-height: 30px; } /*font字体的简写:font:style weight size/line-heigt font-family*/ /*要求必须出现的2个是 size font-family*/ p{ font: 24px/1.5em 'Lucida Sans','Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; letter-spacing: 1px;/*英文字母间距*/ word-spacing: 10px;/*英文单词间距*/ } P::first-letter{ text-transform: capitalize; }/*第一个字母::first-letter*/ p::first-line{ color:red; }/*第一行::first-line*/ </style> </head> <body> <div>技术为王世界,欲问青天山顶景色是否独好技术为王世界, 欲问青天山顶景色是否独好技术为王世界,欲问青天山顶景色是否独好技术为王世界, 欲问青天山顶景色是否独好技术为王世界,欲问青天山顶景色是否独好技术为王世界, 欲问青天山顶景色是否独好技术为王世界, 欲问青天山顶景色是否独好技术为王世界,欲问青天山顶景色是否独好 </div> <p>Technology is king world, I want to ask if the scenery on the top of Qingtian Mountain is the king of technology, I want to ask whether the scenery of Qingtian Peak is the king of technology. If the technology is the king of the world, I would like to ask whether the scenery on the top of Qingtian Mountain is the king of the world. Is the scenery good?</p> </body> </html>
關於樣式繼承問題/*與文字有關樣式會被繼承下去*/程式碼展示如下:
<!doctype html> <html> <head> <meta charset="UTF-8"> <title>index</title> <style> p{ font-size: 20px; font-family: 微软雅黑; color:#f00; font-weight:bold; font-style:italic; word-spacing:15px; } </style> </head> <body> <div> <p><span>linux php linux</span></p> <p><span>linux linux php linux</span></p> <p><span>linux linux php linux</span></p> <p><span>linux linux php linux</span></p> </div> </body> </html>
更多程式相關知識,請造訪:程式設計教學! !
以上是css font控製字體的多種變換的詳細內容。更多資訊請關注PHP中文網其他相關文章!