I’m trying to adjust the font weight rather than just “bold”. It appears to be doing nothing on Verdana text. Has browser support for this dropped or something?
<div class='business-hours'>
Toll free: (866) 528-4930 · Mon-Fri 9-5 EST
</div>
#hd .top-nav .business-hours {
text-align: right;
font-family: verdana;
font-weight: 600;
font-size: 10px;
color: #9ea3a0;
}
Numeric and other less usual
font-weightproperties (likesemi-bold,booketc.) are supported very poorly across browsers, and AFAIK relevant only if the font itself provides support for the given value (i.e. has a explicitbookor900font weight defined). So it’s not really a sensible thing to use if consistency is desired.See Are all css font-weight property’s values useful?
And reference info at the W3C