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
Yaswanth Goli
6,872 PointsFont 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
Unsubscribed User
6,073 PointsHi, maybe this information can help you. http://stackoverflow.com/questions/19642889/font-face-bold-doesnt-work-in-chrome-and-firefox
Unsubscribed User
6,073 PointsTry to express a numerical value for the font weight.
Yaswanth Goli
6,872 PointsYaswanth Goli
6,872 Pointsthank you your help but it don't solve my problem