-
Star
(553)
You must be signed in to star a gist -
Fork
(87)
You must be signed in to fork a gist
-
-
Save marcedwards/3446599 to your computer and use it in GitHub Desktop.
/* ---------------------------------------------------------- */ | |
/* */ | |
/* A media query that captures: */ | |
/* */ | |
/* - Retina iOS devices */ | |
/* - Retina Macs running Safari */ | |
/* - High DPI Windows PCs running IE 8 and above */ | |
/* - Low DPI Windows PCs running IE, zoomed in */ | |
/* - Low DPI Windows PCs and Macs running Firefox, zoomed in */ | |
/* - Android hdpi devices and above */ | |
/* - Android tvdpi devices, including Google Nexus 7 */ | |
/* - Chrome running on high DPI Macs and PCs */ | |
/* - Opera running on high DPI Macs, PCs and mobile devices */ | |
/* */ | |
/* Please note that this code assumes you'll swap a */ | |
/* 2× version of your images. If you'd like to supply */ | |
/* finer increments, other thresholds might be appropriate. */ | |
/* */ | |
/* @marcedwards from @bjango */ | |
/* */ | |
/* ---------------------------------------------------------- */ | |
@media only screen and (-webkit-min-device-pixel-ratio: 1.3), | |
only screen and (-o-min-device-pixel-ratio: 13/10), | |
only screen and (min-resolution: 120dpi) | |
{ | |
/* Your code to swap higher DPI images */ | |
} |
@prasannavigneshr If they’re the same resolution, you’d have to find out the min-device-pixel-ratio or min-resolution(dppx) for each device. Hopefully they’re different, otherwise you couldn’t target specific CSS (there may be other options, but they may get more tricky).
@paulmillr Nice!
Merci ça fonctionne très bien pour moi avec quelques ajouts pour les portables et les tablettes et min-résolution: 240dpi ce qui exclu les mDPI, je n'ai pas inclu les téléphones.
@media only screen and (-webkit-min-device-pixel-ratio: 1.3),only screen and (-o-min-device-pixel-ratio: 13/10),only screen and (min-resolution: 240dpi){
@media screen and (min-width: 1024px) {
#hockey2{
font-size:1.2em !important;
}
}
@media screen and (min-width: 1050px) {
#p{
display:block !important;
}
#aside{
margin-top:150px !important;
}
#hockey2{
top:153px;
}
body{
font-size:1.1em;
}
}
@media screen and (min-width: 1280px) {
#hockey2{
font-size:1em !important;
}
}
@media screen and (min-width: 1440px) {
#hockey2{
font-size:1.2em !important;
}
}
}
Amazing... Anyone have a media query to target all Android devices?
Awesome!
I use this to use more beautiful font-smoothing on high dpi media devices:
https://gist.github.com/dpschen/aebfd3e140333fdfd5d4f9a79eb3dd2b
This was published in 2012. Is it still actual in 2020, or are there better methods?
This was published in 2012. Is it still actual in 2020, or are there better methods?
As far as I’m aware, it’s still a great way to go. webkit-min-device-pixel-ratio
is non-standard, but widely supported. min-resolution
is the standard. Having both seems good. You could probably drop -o-min-device-pixel-ratio
, given Opera has supported webkit-min-device-pixel-ratio
since 2013.
webkit-min-device-pixel-ratio
reference
- https://caniuse.com/#feat=mdn-css_at-rules_media_-webkit-device-pixel-ratio
- https://developer.mozilla.org/en-US/docs/Web/CSS/@media/-webkit-device-pixel-ratio
@stinoga It seems like dppx still doesn’t have full support: http://caniuse.com/#feat=css-media-resolution
@chimos Please see above. :) dppx should be the way to go, but it doesn’t have support everywhere yet. Hopefully soon.