我有一页用两种选择的电子邮件/电话进行注册,当用户单击电话按钮进行注册时,我希望边框仍为红色,但是当鼠标悬停在边框上时,它会悬停,但我不知道该怎么做同一页的边框也为红色。
.EPbutton{
font-size: 14px;
font-weight: bold;
display: inline-block;
text-decoration: none;
color:black;
border-bottom: 2px solid black;
width: 130px;
height: 20px;
margin-top: 12px;
margin-bottom: 5px;
}
.EPbutton:hover{
border-bottom: 2px solid red;
color:red;
cursor: pointer;
}
答案 0 :(得分:0)
:focus
.EPbutton:focus {
border-bottom: 2px solid red;
color:red;
cursor: pointer;
}