CSS修改文字大小的方法
在CSS中,我們可以使用font-size
屬性來(lái)改變文字的大小,這個(gè)屬性可以設(shè)置一個(gè)具體的像素值,或者是一個(gè)相對(duì)的大?。ㄈ?code>larger,smaller
等),下面是一些例子:
1、設(shè)置一個(gè)具體的像素值:
p { font-size: 16px; }
2、使用相對(duì)大小:
p { font-size: larger; }
3、繼承字體大?。?/p>
body { font-size: 16px; } h1 { font-size: 2em; /* 2 times the size of the body text */ }
4、使用百分比:
p { font-size: 120%; /* 120% of the parent element's font-size */ }
5、使用vw
(視口寬度):
p { font-size: 2vw; /* 2% of the viewport width */ }
font-size
屬性的值可以根據(jù)你的具體需求進(jìn)行設(shè)置,可以是***像素值,也可以是相對(duì)大小,你也可以使用其他單位(如em
,rem
等)來(lái)設(shè)置字體大小。