I have an element, which has the following CSS:
.elem { left: 0; position: fixed; right: 0; width: 60%; z-index: 1000; }
The elemen
Using CSS:
.elem { left: auto; }
Using JQuery:
$(".elem").css("left", "auto");