Omega
Omega

Reputation: 9158

inherit css property

is it possible to cancel the inherited text-align property in 'no-center' DIV?

Upvotes: 0

Views: 65

Answers (1)

BoltClock
BoltClock

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

Related Questions