I am working with a CSS class that positions a span to the left using the code snippet:
left: 0.5em;
Is there a way for me to override this and set the position to the right instead, like so:
right: 0.5em;
Either by applying it inline or creating another class?
In simpler terms, how can I remove or nullify the left value entirely?