Y a-t-il un attribut CSS min-gauche

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

@media all and (max-width: 980px) {
    #element{
        margin-left: 0px;
        left: 220px;
    }
}
Repulsive Rhinoceros