Menu
×
×
正确
<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>
不正确
点击 此处 重试 正确
下一题 ❯<style>w3exercise_input_no_0{ 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> |