Answers for "media min-width css"

CSS
24

media query min and max

/* Max-width */
@media only screen and (max-width: 600px)  {...}

/* Min-width */
@media only screen and (min-width: 600px)  {...}

/* Combining media query expressions */
@media only screen and (max-width: 600px) and (min-width: 400px)  {...}
Posted by: Guest on December-06-2019
0

media min-width css

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

@media screen and (min-width

@media (min-width: 1250px) { ... }
Posted by: Guest on February-21-2021
0

min-width media query

Max Media Query
Posted by: Guest on April-10-2020

Code answers related to "media min-width css"

Browse Popular Code Answers by Language