Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
body { color: navy; } /* inherited by p */ p { } /* inherits navy */ /* Declared styles always beat inherited styles */ p { color: green; } /* 0-0-1 beats inherited navy */ /* explicit inherit keyword */ p { color: inherit; } /* forces inheritance */
Result
Open