Answers for "w3school media quiries"

CSS
0

media query in css

/* So me write a media query like this */
@media screen and (min-width:746px){
  /* here we will add the stles we want
  for the screen with min -width of 746 px*/
}
/* we can also use something like*/
@media print and (min-width:1024px){
}
/* Here print is for what we will see if we print whats on the screen*/
Posted by: Guest on December-16-2021
4

media queries

@media screen and (max-width: 480px) { }
Posted by: Guest on August-05-2021
0

media queries

ELIANE SADRON
      DESIGNER WEB FRONT-END
Posted by: Guest on November-19-2021

Browse Popular Code Answers by Language