Answers for "media screen and max width css"

CSS
4

@media screen and (max-width

@media screen and (min-width: 769px) {
    /* STYLES HERE */
}

@media screen and (min-device-width: 481px) and (max-device-width: 768px) { 
    /* STYLES HERE */
}

@media only screen and (max-device-width: 480px) {
    /* STYLES HERE */
}
Posted by: Guest on February-21-2021
51

media query

@media only screen and (max-width: 600px) {
  body {
    background-color: lightblue;
  }
}
Posted by: Guest on December-06-2019
1

media max width css

@media only screen and (max-width: 1000px) {
  /* place here CSS for when the screen is less than 1000px wide */
  .card {
    width: 100%;
  }
}
Posted by: Guest on June-01-2021

Code answers related to "media screen and max width css"

Browse Popular Code Answers by Language