I'm struggling with the font-weight
property in my CSS. Despite trying different values like lighter
, bold
, and even numerical values like 300
, it doesn't seem to have any effect on the font weight in any browser. I am using the following code to style the font for a page:
body
{
font-family: charcoal, arial, sans-serif;
font-size:small;
font-weight:lighter;
}
Even when testing with other fonts like Impact, the issue remains the same - the font-weight property has no impact at all. Any advice or suggestions would be greatly appreciated.