想问下老师这段代码错在哪里呀
我没加:focus的时候 输入框颜色都是正常的,加了之后就没反应了。。
<style type="text/css">
/*此处写代码*/
input:hover{
border-color:red;
}
.name input:focus{
background-color:orange;
}
.mima input:focus{
background-color:yellow;
}
</style>
</head>
<body>
<!-- 此处写代码 -->
<form>
<div class="name">
用户名:<input type="text">
</div>
<div class="mima">
密码:<input type="password">
</div>
</form>
</body>
还有两个其他问题
1. <input type="text">这里面类名是input吗?可以给input里面加class吗?
写成<input type="text" class="name1">可以吗?
2. 类名是不是不能和属性名长得一模一样啊?一般密码框的类名都会怎么起呢?起password感觉跟type属性名就一模一样了
正在回答
同学你好,问题解答如下:
1、代码实现是正确的,建议同学再使用chrome浏览器测试下。
2、<input type="text"> 中的input是标签名,而不是类名。
可以添加class。
可以写成<input type="text" class="name1">。
3、不是的,类名可以和属性名一样。
一般密码框的类名会设置为password,或者简写为pwd。
祝学习愉快~
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星