Is there a way to eliminate a CSS property from a class without setting it to null? Let's say I have a class called myclass with the property right:0px. I want to completely remove right:0px
from my class, not just set it to null. How can I achieve this?
.myclass{
position:fixed;
right:0px;
}