+ 2
What is font-wieght used for in css?
tell me in detail
1 Antwort
+ 7
font-weight used to styling a letter to be bold or bolder
giving font-weight to a letter will give same effect when you use <b> tag.
font-weight: bold; == <b>
tell me in detail