Answers for "@media (min-width 992px)"

CSS
1

@media only screen and (min-width : 1279px) and (max-width : 1400px)

@media only screen and (min-width: 200px) and (max-width: 767px) and (orientation : portrait) {
        //Put your CSS here for 200px to 767px width devices (cover all mobile portrait width //        
  }
Posted by: Guest on September-12-2021
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 "@media (min-width 992px)"

Browse Popular Code Answers by Language