Hack 1: @media and -webkit-min-device-pixel-ratio
/* will be red only in google chrome */
#test1{color:green;}
@media screen and (-webkit-min-device-pixel-ratio:0) {
#test1{color:red;}
}
Hack 2: For Google Chrome and Opera<10
/* will be red only in opera and google chrome */
#test2{
color:green;
-bracket-:hack(;
color:red;
);
}
Hack 3: For Google Chrome
/* will be red only in google chrome */
#test3{
color:green;
(-bracket-:hack;
color:red;
);
}
or
Hack 4: For Google Chrome
/* will be red only in google chrome */
#test4{
color:green;
-bracket-:hack[;
color:red;
];
}
Source::http://mynthon.net/howto/webdev/css-hacks-for-google-chrome.html
No comments:
Post a Comment