/ Published in: CSS
Methods to target different browsers in CSS.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
/* working as of Jan 7, 2010 */ @-moz-document url-prefix() {table.week {margin:0 0 10px 0;}} /* target just firefox */ table.week {height:50px;*height:30px;} /* *height targeted @ IE */ @media screen and (-webkit-min-device-pixel-ratio:0){table.week {height:30px;}} /* target safari and gchrome */