scrimba
Frontend Career Path
Essential CSS concepts
Build an NFT Site
CSS specificity and !important keyword
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

CSS specificity and !important keyword
AboutCommentsNotes
CSS specificity and !important keyword
Expand for more info
index.html
run
preview
console
<!doctype html>
<html>
<head>
<title></title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="container">
<h1 class="title">Sofa Archaeology!</h1>
<h2 class="sub-title">Unearthing Lost Remotes and Ancient Snacks</h2>
<img src="sofa-archaeology.png" alt="An individual dressed as an explorer with a safari hat and magnifying glass humorously investigates a large, overstuffed sofa in a living room, finding remotes, snacks and coins.">
</div>
</body>
</html>
Console
/index.html
-2:53