25 lines
393 B
HTML
25 lines
393 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
/* Descendant selector should match at all depths */
|
|
div span {
|
|
background-color: green;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="level1">
|
|
<div class="level2">
|
|
<div class="level3">
|
|
<div class="level4">
|
|
<div class="level5">
|
|
<span>Deep nested span</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|