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

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

實(shí)例解析:

font-weight屬性用于設(shè)置文本的粗細(xì)。

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

描述
normal默認(rèn)值,定義標(biāo)準(zhǔn)的字符。
bold定義粗體字符。
bolder定義更粗的字符。
lighter定義更細(xì)的字符。

○ 100

○ 200

○ 300

○ 400

○ 500

○ 600

○ 700

○ 800

○ 900? ? ?

定義由粗到細(xì)的字符。400 等同于 normal,而 700 等同于 bold。





? ? ? ??

? ? ? ??

? ? ? ??

? ? ? ??

? ?


繼續(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>
提交重置代碼