Search
 
SCRIPT & CODE EXAMPLE
 

CSS

responsive media qurries

@media screen and (min-width:786px)
{

}
@media screen and (min-width:992px)
{

}
@media screen and (min-width:1200px)
{

}
Comment

media query for responsive website

// start Device responsive

//mobile sm 320
@media screen and (max-width:374px){

}

//mobile md 375
@media screen and (min-width:375px) and (max-width:424px){
    
}

//mobile lg 425
@media screen and (min-width:425px) and (max-width:767px){
    
}

//tablet 768
@media screen and (min-width:768px) and (max-width:1023px){
    
}

//Laptop 1024
@media screen and (min-width:1024px) and (max-width:1439px){
    
}

//Laptop L 1440
@media screen and (min-width:1440px) and (max-width:2559px){
    
}

//4K 2560
@media screen and (min-width:2560px){
    
}


//end Device responsive
Comment

css media query responsive sizes

320px
480px
600px
768px
900px
1024px
1200px
Comment

Responsive Web Design - Media Queries

/* For desktop: */
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  [class*="col-"] {
    width: 100%;
  }
}
Comment

PREVIOUS NEXT
Code Example
Css :: css background image position vertical center 
Css :: how to add space between menu items in css 
Css :: circle css with text in the center 
Css :: scss not working with storybook 
Css :: get all tables laravel 
Css :: how to use bulma in gatsby 
Css :: chrome button black white border 
Css :: drop shadow css 
Css :: ipad specific media query 
Css :: the other div inline-block is in bottom 
Css :: How to find the key of the largest value hash? 
Css :: centred div 
Css :: how to link css to html in visual studio code 
Css :: underlined style for a link 
Css :: css media query 
Css :: header center 
Css :: To make the datetime always LTR 
Css :: rgb white 
Css :: css change overflow scrollbar 
Css :: how to css with data arrtibute 
Css :: how to write remark in css 
Css :: Hide first of type elements using css , how to hide elements using css 
Css :: css how to center a link 
Css :: css div overlay div 
Css :: make div the size of the text inside 
Css :: css blur 
Css :: css3, media queries cheatSheet 
Css :: html disable spin buttons on input type number 
Css :: html watermark background 
Css :: adding border to text css 
ADD CONTENT
Topic
Content
Source link
Name
9+2 =