Reputation: 9158
is it possible to cancel the inherited text-align property in 'no-center' DIV?
Upvotes: 0
Views: 65
Reputation: 723448
I'm not sure what you mean but you can override it with a new value:
body { text-align: center; }
div.no-center { text-align: left; }
Upvotes: 2