I’m doing a Photoshop-to-XHTML conversion, and the website designer used the Myriad Pro Semi-bold font which looks good in the photoshop file, but when I try the semi-bold option in CSS, it looks pretty much like a normal bold font, which is too bold for my purpose. Is there a way to achieve a nicer looking semi-bold font in HTML and CSS or am I just stuck with ‘font-weight: 600;’?
I’m doing a Photoshop-to- XHTML conversion, and the website designer used the Myriad Pro
Share
The practical way is setting
font-familyto a value that is the specific name of the semibold version, such asif that’s the name. (Personally I use my own font listing tool, which runs on Internet Explorer only to see the fonts in my system by names as usable in CSS.)
In this approach,
font-weightis not needed (and probably better not set).Web browsers have been poor at implementing font weights by the book: they largely cannot find the specific weight version, except bold. The workaround is to include the information in the font family name, even though this is not how things are supposed to work.
Testing with Segoe UI, which often exists in different font weight versions on Windows systems, I was able to make Internet Explorer 9 select the proper version when using the logical approach (of using the font family name Segoe UI and different
font-weightvalues), but it failed on Firefox 9 and Chrome 16 (only normal and bold work). On all of these browsers, for example, settingfont-family: Segoe UI Lightworks OK.