如何設定字體的粗細

實例解析:

font-weight屬性用於設定文字的粗細。

可以設定下列屬性值:

##描述#normal預設值,定義標準的字元。 bold定義粗體字元。 bolder定義較粗的字元。 lighter定義更細的字元。 #定義由粗到細的字元。 400 等同於 normal,而 700 等同於 bold。
#值
#○ 100

○ 200

○ 300

○ 400

○ 500

#○ 600

○ 700

#○ 800

○ 900     





        

        

        

#        


# 時#
繼續學習
||
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网(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>
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!