Select Page

Tag: Media Queries

Retina Display Media Query

Retina Display Media Query

For including high-res graphics, but only for screens that can make use of them. “Retina” being “2x”: Difference between normal display and retina display CSS – Media Query @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (...
CSS Media Queries for iPhone X / 8 / 8 Plus

CSS Media Queries for iPhone X / 8 / 8 Plus

Media query is a CSS technique introduced in CSS3. It is a cool way to target different screen sizes, orientations, and devices. Here are CSS Media Queries for iPhone X, 8, and 8 Plus. iPhone X, 8 and 8 Plus CSS Media Queries Media Query for iPhone X @media only...
Media Query for IPad Pro – CSS

Media Query for IPad Pro – CSS

Media Query for IPad Pro – CSS Here is Portrait and Landscape CSS media query specially designed for the iPad Pro tablet. You can directly copy and paste the media queries to your CSS file and write your styles within the {} curly braces. CSS /*...

Breakup Points – Media Queries Followed By Bootstrap 4

Here is a CSS media queries extracted from Bootstrap 4 – mobile first framework for website user-interface development. CSS Media Queries // Extra small devices (portrait phones, less than 576px) @media (max-width: 575.98px) { … } // Small devices...