Here's what I've done (thanks to this blog):
@media screen and (-webkit-min-device-pixel-ratio:0) {
#my_id .my_form_row.my_embed_label input[type=password] {
float: left;
}
}
It is basically a media query supported by CSS3, which says that for "screen" media type that supports webkit, use the CSS code within the bracket. I would only use this technique if you run out of options, since this is kind of a hack for webkit browsers only.