您好,登錄后才能下訂單哦!
這篇文章將為大家詳細(xì)講解有關(guān)css常用樣式font設(shè)置字體多種變換的案例,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
CSS 字體屬性定義文本的字體系列、大小、加粗、風(fēng)格(如斜體)和變形(如小型大寫字母)font-family控制字體,由于各個(gè)電腦系統(tǒng)安裝的字體不盡相同,但是基本裝有黑體、宋體與微軟雅黑這三款字體,通常這樣寫font-family:"黑體", "宋體","Microsoft YaHei"
font-size控制字體大小,我們?cè)O(shè)置字體大小是設(shè)置它的寬度,它的高度一般電腦系統(tǒng)默認(rèn)字體大小是16px,所以字體大小盡量不要低于16px,1em=16px; font-weight: bold;/*控制字重 一般是100-900 常用lighter(細(xì)體) normal(正常)bold加粗 */至于這個(gè)font-style,一般默認(rèn)是normal,也就是正常的,如果說你設(shè)置 font-style: italic;斜體話,其實(shí)和這個(gè)<em></em>的效果是差不多的;文字間的間距用的line-height如果和高度相等話,就是垂直居中了。
通常font字體的簡寫:font:style weight size/line-heigt font-family /*要求必須出現(xiàn)的2個(gè)是 size與font-family*/
<!DOCTYPE html> <html lang="en"> <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; */ /*字體加上雙引號(hào)或者單引號(hào),當(dāng)有多個(gè)字體的時(shí)候,中間逗號(hào)分開*/ color:#f90; font-size: 24px;/*控制字體大小*/ font-weight: bold;/*控制字重 常用lighter(細(xì)體) normal(正常)bold加粗 */ font-style: italic;/*等同于em*/ line-height: 30px; } /*font字體的簡寫:font:style weight size/line-heigt font-family*/ /*要求必須出現(xiàn)的2個(gè)是 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; }/*第一個(gè)字母::first-letter*/ p::first-line{ color:red; }/*第一行::first-line*/ </style> </head> <body> <div>技術(shù)為王世界,欲問青天山頂景色是否獨(dú)好技術(shù)為王世界,欲問青天山頂景色是否獨(dú)好技術(shù)為王世界,欲問青天山頂景色是否獨(dú)好技術(shù)為王世界, 欲問青天山頂景色是否獨(dú)好技術(shù)為王世界,欲問青天山頂景色是否獨(dú)好技術(shù)為王世界,欲問青天山頂景色是否獨(dú)好技術(shù)為王世界, 欲問青天山頂景色是否獨(dú)好技術(shù)為王世界,欲問青天山頂景色是否獨(dú)好 </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>
關(guān)于“css常用樣式font設(shè)置字體多種變換的案例”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。