Answers for "min attribute in css"

CSS
1

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
0

is there a min-left css attribute

#element {
  position:absolute;
  left: 70%;
}

@media all and (max-width: 980px) {
    #element{
        margin-left: 0px;
        left: 220px;
    }
}
Posted by: Guest on December-27-2021

Browse Popular Code Answers by Language