How i can override this declaration, i can do something like this
div.someClass {position:absolute; left:10px; top:20px}
i want this -----------------------------
div.myClass div.someClass {position:absolute; RIGHT:10px; top:20px; left:auto;}
You can say, that it should work if I set left:auto; but it is not working in IE6, i didn't check what happen in IE7, IE8.
How to change position using only css - some ideas ?