Web.QHMIT
.com
Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
Run
<!DOCTYPE html> <title>Example</title> <style> body { background: gold; color: green; font-family: serif; font-size: 2em; } p { background: yellowgreen; } .parent { color: white; font-family: sans-serif; font-size: .7em; font-style: italic; padding: 5px; border: 1px solid black; } .c2 { all: inherit; } .c3 { all: unset; } .c4 { all: initial; } </style> Body <div class="parent"> Parent <p>c1</p> <p>c1</p> <p class="c2">c2</p> <p class="c2">c2</p> <p class="c3">c3</p> <p class="c3">c3</p> <p class="c4">c4</p> <p class="c4">c4</p> </div>
Preview