: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>