伪类选择器
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style type="text/css">
a:link{
color: orangered;
}
a:visited{
color: #FFE4C4;
text-decoration: none;
}
a:hover{
color: tan;
}
a:active{
color: olivedrab;
border: mediumslateblue;
}
input:focus{
border: none;
border-bottom: solid gray 0.0625rem;
}
input:focus{
outline: none;
border-bottom: solid cornflowerblue 0.625rem;
}
</style>
</head>
<body>
<a href="https://www.baidu.com">我是百度链接</a>
<input type="password">
</body>
</html>