Answers for "css media from to width css"

CSS
2

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

Browse Popular Code Answers by Language