-
Notifications
You must be signed in to change notification settings - Fork 1
Browser hacks
fredchu edited this page May 15, 2012
·
3 revisions
.sample {
color: #006699;
}
.sample {
color: #006699\9;
}
.sample {
color/*\**/: #006699\9;
}
html>body .sample {
color: #006699;
}
*+html>body .sample {
color: #006699;
}
*:first-child+html .sample {
color: #006699;
}
.sample {
*color: #006699;
}
* html .sample {
color: #006699;
}
.sample{
_color: #006699;
}
html>/**/body .sample {
color: #006699;
}
@media all and (-webkit-min-device-pixel-ratio:10000),not all and (-webkit-min-device-pixel-ratio:0) {
.sample {
color: #006699;
}
}
html:first-child .sample {
color: #006699;
}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sample {
color: #006699;
}
}