Menu
×
×
Correct!
Exercise:Change the list's item marker to an image called 'bling.jpg':
<style>
ul {
@(16): @(16);
}
</style>
<body>
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Coca Cola</li>
</ul>
</body>
<style>
ul {
list-style-image: url("bling.jpg");
}
</style>
<body>
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Coca Cola</li>
</ul>
</body>
<style>
ul {
list-style-image: url('bling.jpg');
}
</style>
<body>
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Coca Cola</li>
</ul>
</body>
<style>
ul {
list-style-image: url(bling.jpg);
}
</style>
<body>
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Coca Cola</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?