Answers for "@media max height and width css responsive"

CSS
1

media max height css

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

media queries css responsive max width

@media only screen and (max-width: size in px) {
  All of your css here
}
Posted by: Guest on March-11-2021

Code answers related to "@media max height and width css responsive"

Browse Popular Code Answers by Language