Before you say it, I know there are better ways of streamlining your CSS based on the browser, but this is good to ‘know’
@media screen and (-webkit-min-device-pixel-ratio:0) {
.element_class {
font-weight: bold;
}
}
Its just good to know that the above CSS will only be applied to the Chrome or Safari (3) browser (at the time of writing)