Thinning bold text in css
This article will explain in detail about the thinning of bold text in css. The editor thinks it is very practical, so I share it with you as a reference. I hope you can get something after reading this article.
To make bold text thinner, it will be realized by css font-weight, and whether the font can be realized in bold pattern.
For H2, h3, h4, h5, h6, etc., allow the font bold pattern to complete the fine font (the font becomes deformed)
H2 {font-weight:normal} h3 {font-weight:normal} h4 {font-weight:normal} h5 {font-weight:normal} h6 {font-weight:normal}
CSS can be abbreviated to bold and thinned:
H2,h3,h4,h5,h6 {font-weight:normal}
B, strong fonts become thinner in bold tags
Path self-labeling configuration
B {font-weight:normal} strong {font-weight:normal}
Can be abbreviated to set two fonts at the same time bold label name thinning CSS:
B,strong {font-weight:normal}
It is not recommended to use font-weight settings such as 400,300,100 to make the pen and ink thinner, as different hunting devices support different compatibility.
This is the end of the article on "thinning bold text in css". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, please share it for more people to see.