Answers for "is there a min-left css attribute"

CSS
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