菜单
×
×
正确!
练习将任何处于焦点状态的 <input> 元素的背景颜色设置为红色。 <style> @(11) { background-color: red; } </style> <body> <form> 姓名: <input type="text" name="fname"> 年龄: <input type="text" name="age"> </form> </body>
<style> input:focus { background-color: red; } </style> <body> <form> 姓名: <input type="text" name="fname"> 年龄: <input type="text" name="age"> </form> </body>
不正确点击这里重新尝试。 正确!下一个 ❯ |
这将重置所有 138 道练习的分数。
您确定要继续吗?