获得焦点

2019-01-21  本文已影响0人  让思念入土

:focus 伪类 选择器用于选取获得焦点的元素 。
主要针对的是 表单元素


<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
    input {
        outline: none;
    }
    input:focus {
        background-color: pink;
        border: 1px solid red;
        height: 30px;
    }
    </style>
</head>
<body>
    <input type="text">
</body>
</html>
上一篇下一篇

猜你喜欢

热点阅读