Menu
×
×
Correct!
Exercise:Hide the <h1> element. It should still take up the same space as before.
<style>
h1 {
@(10): @(6);
}
</style>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph</p>
<p>This is a paragraph</p>
</body>
<style>
h1 {
visibility: hidden;
}
</style>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph</p>
<p>This is a paragraph</p>
</body>
Not CorrectClick here to try again. Correct!Next ❯<style> h1 {w3exercise_input_no_0:w3exercise_input_no_1; } </style> <body> <h1>This is a heading</h1> <p>This is a paragraph</p> <p>This is a paragraph</p> </body> |
Completed 0 of 138 Exercises:
This will reset the score of ALL 138 exercises.
Are you sure you want to continue?