国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

如何設(shè)定字體的粗細(xì)

實(shí)例解析:

font-weight屬性用於設(shè)定文字的粗細(xì)。

可以設(shè)定下列屬性值:

##描述#normal預(yù)設(shè)值,定義標(biāo)準(zhǔn)的字元。 bold定義粗體字元。 bolder定義較粗的字元。 lighter定義更細(xì)的字元。 #定義由粗到細(xì)的字元。 400 等同於 normal,而 700 等同於 bold。
#值
#○ 100

○ 200

○ 300

○ 400

○ 500

#○ 600

○ 700

#○ 800

○ 900? ? ?





? ? ? ??

? ? ? ??

? ? ? ??

#? ? ? ??


#?時(shí)#
繼續(xù)學(xué)習(xí)
||
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文網(wǎng)(php.cn)</title> <style> p.normal {font-weight:normal;} p.light {font-weight:lighter;} p.thick {font-weight:bold;} p.thicker {font-weight:900;} </style> </head> <body> <p class="normal">This is a paragraph.</p> <p class="light">This is a paragraph.</p> <p class="thick">This is a paragraph.</p> <p class="thicker">This is a paragraph.</p> </body> </html>
提交重置程式碼