Answers for "min css"

CSS
0

min css

.container {  width: min(80ch, 100% - 2rem);  margin-right: auto;  margin-left: auto;}
Posted by: Guest on August-19-2021
0

min css

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

Browse Popular Code Answers by Language