scrimba
Introduction to CSS
Visibility in CSS
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

Visibility in CSS
AboutCommentsNotes
Visibility in CSS
Expand for more info
index.html
run
preview
console
<html>
<head>
<link rel="stylesheet" href="instructor.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<section>
<div class="box hidden">Box</div>
<div class="box">Box</div>
<section>
</body>
</html>
Console
index.html#
-1:26