Answers for "how to define a media query with a min width with class"

CSS
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

Code answers related to "how to define a media query with a min width with class"

Browse Popular Code Answers by Language