I have an element, which has the following CSS:
.elem { left: 0; position: fixed; right: 0; width: 60%; z-index: 1000; }
The elemen
The default value for left is auto, so just set it to that and you will "reset" it.
left
auto
.elem { left: auto; }
Make sure that the above comes after the original CSS file.