I have a Flex 3.2 application for which I am developing a custom style. Basically the first stylesheet gets applied first, and then my custom stylesheet. I am wondering how I can completely empty a value set in the first stylesheet with a value set in the second. The value has to be blank because if the horizontal-center value is set then any other positioning values are ignored. I have attempted null and "" with no luck. Any ideas?
Example
CSS1.css
.myButton {
horizontal-center: 0;
}
CSS2.css
.myButton {
horizontal-center: ??
left: 0;
}