Menu
×
×
正确
<style>
@(11) {
background-color: red;
}
</style>
<body>
<form>
Name:
<input type="text" name="fname">
Age:
<input type="text" name="age">
</form>
</body>
<style>
input:focus {
background-color: red;
}
</style>
<body>
<form>
Name:
<input type="text" name="fname">
Age:
<input type="text" name="age">
</form>
</body>
不正确
点击 此处 重试 正确
下一题 ❯<style>w3exercise_input_no_0{ background-color: red; } </style> <body> <form> Name: <input type="text" name="fname"> Age: <input type="text" name="age"> </form> </body> |