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

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 :: input disabled css 
Css :: how to boosts your rendering performance 
Css :: svg background css 
Css :: css drop down 
Css :: how to select elements from a parrent element css 
Css :: css :is 
Css :: add tailwind to next 
Css :: horizontal scroll bar 
Css :: css box-sizing 
Css :: css elementos 
Css :: import css in figma 
Css :: symfony app css not working 
Css :: css tbody space tr 
Css :: añadir hojas css externas a wordpress 
Css :: html css text color invert on image 
Css :: ausgewählter text farbe ändern css 
Css :: css diplay grid text truncate 
Css :: Accordion example 
Css :: what is focus state in css 
Css :: semi transparent btn 
Css :: Enhancer for Youtube DeepDark Theme 
Css :: line on the text color css 
Css :: overriding fullpage js anchor style 
Css :: how to some of the list and show some in css 
Css :: scss variables mixins 
Css :: how to style boxicon icons in css 
Css :: aplicar padding a sombra 
Css :: print td color not working 
Css :: CSS ClipMethod (.visuallyhidden) 
Css :: toolbar size 
ADD CONTENT
Topic
Content
Source link
Name
3+5 =