这样写可以吗?

来源:2-17 编程练习

如花慕少

2020-01-09 16:56:41

<!DOCTYPE html>

<html>

    <head>

        <meta charset="UTF-8">

        <title>动态伪类</title>

        <style type="text/css">

            /*此处写代码*/

            input{border:1px solid #333;}

            input:hover{

               border:1px solid red; 

            }

            input[type="text"]:focus{

                background:orange;

            }

            input[type="password"]:focus{

                background:#ff0;

            }

        </style>

    </head>

    <body>

        <!-- 此处写代码 -->

        用户名:<input  type="text">

        <br><br>

        密码:<input type="password">

    </body>

</html>


写回答

1回答

好帮手慕粉

2020-01-09

同学你好,代码是正确的。继续加油,祝学习愉快~

0

0 学习 · 40143 问题

查看课程