Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS

Font Weight rendering issue in chrome

@font-face {
    font-family: 'verdanaregular';
    src: url('../images/fonts/verdana-webfont.eot');
    src: url('../images/fonts/verdana-webfont.eot?#iefix') format('embedded-opentype'),
         url('../images/fonts/verdana-webfont.svg#verdanaregular') format('svg'),
         url('../images/fonts/verdana-webfont.woff') format('woff'),
         url('../images/fonts/verdana-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;

}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    @font-face {
        font-family: 'verdanaregular';
        src: url('../images/fonts/verdana-webfont.svg#verdanaregular') format('svg');
    }
}

i used this code to fix windows chrome rendering issue and it solved, after that font-weight:bold is not working for any element in my stylesheet , its urgent

2 Answers

thank you your help but it don't solve my problem

Try to express a numerical value for the font weight.