Menu
×
×
Correct!
Exercise:Display the list items as inline elements.
<style>
@(2) {
@(7): @(6);
}
</style>
<body>
<ul>
<li>Apple</li>
<li>Orange</li>
<li>Pear</li>
</ul>
</body>
<style>
li {
display: inline;
}
</style>
<body>
<ul>
<li>Apple</li>
<li>Orange</li>
<li>Pear</li>
</ul>
</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?