html5字號(hào)為20px怎么設(shè)置?
設(shè)置html5中字體的大小,首先需要理解是css中的font屬性,通過font-size來改變字體的大小,設(shè)置的方式,一般都是通過給這個(gè)元素的一個(gè)id或者是class來設(shè)置,具體看下面代碼:
<html> <head> <style> #round{ width:400px; height:200px; } #round p{ color:#f00; //設(shè)置字體顏色為紅色; } </style> </head> <body> <div id="round"> <p>測試文字</p> </div> </body> </html>