this blog is a collection of resouces i like, some post are created by myself (which will be in mine menu) and other are taken form online. source link will be place in every post.

I am working as web designer, wordpress and joomla customization. and i love open source. Don't you.

All the materials are keep for education and fun propose only.

Comment and feedback is always welcome.

Wednesday, June 20, 2012

CSS Chrome Hack

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