Answers for "max width css"

CSS
1

css media screen

@media (max-width: 991px){
    .mobile{
        display: block;
    }
}
Posted by: Guest on October-30-2020
3

max css

.content {
  /*Choose the biggest value between these two values at any time*/
  width:max(500px,70%);
  /*equivalent to */
  width:70%;
  max-width:500px;
}
Posted by: Guest on August-14-2021

Browse Popular Code Answers by Language