Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions foundations/cascade/01-cascade-fix/index.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<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">
<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>Fix the Cascade</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="style.css" />
</head>
<body>
<p class="para">I'm just a paragraph with extra bold text!</p>
Expand All @@ -15,7 +15,8 @@
<button id="cancel-button" class="button cancel">Cancel</button>

<div class="text">I'm a div with thin text!</div>
<div class="text">I'm a div with thin text and a child div!
<div class="text">
I'm a div with thin text and a child div!
<div class="text child">I'm a smaller child div with extra bold text.</div>
</div>
</body>
Expand Down