Search
 
SCRIPT & CODE EXAMPLE
 

CSS

media query for mobile and tablet

/* Smartphones (portrait and landscape) ----------- */
@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 480px) {
  /* Styles */
}

/* Smartphones (landscape) ----------- */
@media only screen 
and (min-width : 321px) {
  /* Styles */
}

/* Smartphones (portrait) ----------- */
@media only screen 
and (max-width : 320px) {
  /* Styles */
}

/* iPads (portrait and landscape) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) {
  /* Styles */
}

/* iPads (landscape) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape) {
  /* Styles */
}

/* iPads (portrait) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : portrait) {
  /* Styles */
}

/* Desktops and laptops ----------- */
@media only screen 
and (min-width : 1224px) {
  /* Styles */
}

/* Large screens ----------- */
@media only screen 
and (min-width : 1824px) {
  /* Styles */
}

/* iPhone 4 - 5s ----------- */
@media
only screen and (-webkit-min-device-pixel-ratio : 1.5),
only screen and (min-device-pixel-ratio : 1.5) {
  /* Styles */
}

/* iPhone 6 ----------- */
@media
only screen and (max-device-width: 667px) 
only screen and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}

/* iPhone 6+ ----------- */
@media
only screen and (min-device-width : 414px) 
only screen and (-webkit-device-pixel-ratio: 3) {
  /*** You've spent way too much on a phone ***/
}

/* Samsung Galaxy S7 Edge ----------- */
@media only screen
and (-webkit-min-device-pixel-ratio: 3),
and (min-resolution: 192dpi)and (max-width:640px) {
 /* Styles */
}
Comment

media queries on mobile

@media only screen and (max-width: 600px) {
	...your css here and you're good to go!
}
Comment

css media queries pc and mobile

@media (min-width:320px)  { /* smartphones, iPhone, portrait 480x320 phones */ }
@media (min-width:481px)  { /* portrait e-readers (Nook/Kindle), smaller tablets @ 600 or @ 640 wide. */ }
@media (min-width:641px)  { /* portrait tablets, portrait iPad, landscape e-readers, landscape 800x480 or 854x480 phones */ }
@media (min-width:961px)  { /* tablet, landscape iPad, lo-res laptops ands desktops */ }
@media (min-width:1025px) { /* big landscape tablets, laptops, and desktops */ }
@media (min-width:1281px) { /* hi-res laptops and desktops */ }
Comment

media query for mobile landscape only

@media screen and (orientation:landscape) and
(min-device-width: 320px) and (max-device-width: 450px) {
   /* Input Styles */
}
Comment

PREVIOUS NEXT
Code Example
Css :: make something unclickable css 
Css :: borders for tables in html/css 
Css :: add space between text and underline 
Css :: square bullets css 
Css :: CSS make image fill whole background 
Css :: out transition does not ease 
Css :: E/ViewRootImpl: sendUserActionEvent() mView returned. 
Css :: css hover to disable 
Css :: no border css 
Css :: css select all except first 
Css :: css select last character 
Css :: remove underline on hover span 
Css :: center text horizontally and vertically 
Css :: ion input change font size 
Css :: css align ul li horizontal 
Css :: center elements vertically in div 
Css :: resize logo html css 
Css :: background image stretch to fill 
Css :: tailwind absolute center 
Css :: css remove scrollbar from body 
Css :: bootstrap 4 classes list with description pdf 
Css :: css check if mobile 
Css :: transition transform 
Css :: background color inline styling 
Css :: sass calculate and concat pixels 
Css :: font montserrat 
Css :: reduce image size css 
Css :: background-color not showing grover pdf 
Css :: mirror css a pseudo :after or :before 
Css :: remove background when autofill input css 
ADD CONTENT
Topic
Content
Source link
Name
4+6 =