Hiển thị các bài đăng có nhãn Hack Chrome. Hiển thị tất cả bài đăng
Hiển thị các bài đăng có nhãn Hack Chrome. Hiển thị tất cả bài đăng

Thứ Tư, 18 tháng 4, 2018

hack css Chrome

**** trường hợp 1:
.zoom-pic{
     color:red;  // Firefox
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
.zoom-pic{
color:blue; // Chrome
}
}

**** trường hợp 2:
Firefox
text-align: -moz-center;
Chrome
text-align: -webkit-center;

Thứ Hai, 22 tháng 2, 2016

hack css chrome

/* will be red only in google chrome */
#test1{color:green;}
@media screen and (-webkit-min-device-pixel-ratio:0) {
    #test1{color:red;}
}

link website: http://mynthon.net/howto/webdev/css-hacks-for-google-chrome.html