×
×
Correct!
Remove the bullets/markers from the list items.
<style>
ul {
@(15): @(4);
}
</style>
<body>
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Coca Cola</li>
</ul>
</body>
<style>
ul {
list-style-type: none;
}
</style>
<body>
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Coca Cola</li>
</ul>
</body>
Not CorrectClick here to try again. Correct!<style> ul {w3exercise_input_no_0:w3exercise_input_no_1; } </style> <body> <ul> <li>Coffee</li> <li>Tea</li> <li>Coca Cola</li> </ul> </body> |
This will reset the score of ALL 138 exercises.
Are you sure you want to continue?