Menu
×
×
Correct!
Exercise:Display the <strong> elements as block elements.
<style>
@(6) {
@(7): @(5);
}
</style>
<body>
<h1>This is a Heading</h1>
<p>This is a <strong>paragraph</strong></p>
</body>
<style>
strong {
display: block;
}
</style>
<body>
<h1>This is a Heading</h1>
<p>This is a <strong>paragraph</strong></p>
</body>
Not CorrectClick here to try again. Correct!Next ❯ |
This will reset the score of ALL 138 exercises.
Are you sure you want to continue?