2021-08-29 23:22:54 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
2022-01-30 17:56:35 +00:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>Descendant Combinator</title>
|
|
|
|
<link rel="stylesheet" href="style.css">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="container">
|
|
|
|
<p class="text">This should be styled.</p>
|
|
|
|
</div>
|
|
|
|
<p class="text">This should be unstyled.</p>
|
|
|
|
<p class="text">This should be unstyled.</p>
|
|
|
|
<div class="container">
|
|
|
|
<p class="text">This should be styled.</p>
|
|
|
|
<p class="text">This should be styled.</p>
|
|
|
|
</div>
|
|
|
|
</body>
|
2021-08-29 23:22:54 +00:00
|
|
|
</html>
|