| Yes / No | Name | description | query |
| | Desktops and laptops | Your screen is a normal sized screen | @media only screen and (min-width : 1224px) |
| | Large screens | Your screen is a large sized screen | @media only screen and (min-width : 1824px) |
| | iPhone 4 | You are on an iPhone 4 | @media only screen and (-webkit-min-device-pixel-ratio: 2) |
| | iPad portrait | You are on an iPad portrait | @media screen and (device-width: 768px) and (orientation: portrait) |
| | iPad landscape | You are on an iPad landscape | @media screen and (max-device-width: 1024px) and (orientation: landscape) |
| | Screen | You are on a screen | @media screen |
| | Handheld | You are on a handheld | @media handheld |
| | Aural | You are on a aural | @media aural |
| | Braille | You are on a braille | @media braille |
| | Projection | You are on a projection | @media projection |
| | Tty | You are on a tty | @media tty |
| | Tv | You are on a tv | @media tv |
| | Print | You are on a printer | @media print |
| | Smartphones (portrait and landscape) | You are on a smartphone | @media screen
and (min-device-width : 320px)
and (max-device-width : 800px) |
| | Smartphones (landscape) | You are on a smartphone in landscape mode | @media screen and (min-device-width : 321px) and (max-device-width : 800px) |
| | Smartphones (portrait) | You are on a smartphone in portrait mode | @media screen and (max-device-width : 320px) |