复合选择器-focus选择器(HTML、CSS)
复合选择器-:focus选择器(HTML、CSS)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>复合选择器-:focus选择器</title>
<style>
/* 把获得光标的input表单元素选取出来 */
input:focus {
background-color: rgb(157, 157, 214);
}
</style>
</head>
<body>
<input type="text">
<input type="text">
<input type="text">
</body>
</html>
还没有评论,来说两句吧...