Menu
×
×
Correct!
Exercise:Set the background color to "red" for <a> elements that have a
<style>
@(9) {
background-color: red;
}
</style>
<body>
<a href="https://91xjr.com">91xjr.com</a>
<a href="http://disney.com" target="_blank">Disney.com</a>
<a href="http://wikipedia.org" target="_top">wikipedia.org</a>
</body>
<style>
a[target] {
background-color: red;
}
</style>
<body>
<a href="https://91xjr.com">91xjr.com</a>
<a href="http://disney.com" target="_blank">Disney.com</a>
<a href="http://wikipedia.org" target="_top">wikipedia.org</a>
</body>
Not CorrectClick here to try again. Correct!Next ❯ |