How can I plain old just the value of margin-left on !important? Here is a example:
.property{
margin-left: -10%;
}
.property.more{
margin-left: no value here;
}
I would like the margin-left to be like it was never set. I have tried calc (even none) and everything, but nothing seems to work. Any ideas?