亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

How to set font weight

Example analysis:

The font-weight attribute is used to set the thickness of the text.

The following attribute values ??can be set:

Define characters from thick to thin. 400 is equivalent to normal, and 700 is equivalent to bold.
ValueDescription
normalDefault value, defines standard characters.
bold Define bold characters.
bolderDefine bolder characters.
lighterDefine finer characters.
##○ 100

○ 200

○ 300

○ 400

○ 500

○600

○700

○800

○900





#?????

??????????????????????????????????????????????????????????????????????????????????????????????????????????

Continuing Learning
||
<!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>
submitReset Code