当用户在同一页面中时,如何使边框变为红色?

时间:2019-02-18 05:12:22

标签: html css css3

我有一页用两种选择的电子邮件/电话进行注册,当用户单击电话按钮进行注册时,我希望边框仍为红色,但是当鼠标悬停在边框上时,它会悬停,但我不知道该怎么做同一页的边框也为红色。

enter image description here

.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;
}

1 个答案:

答案 0 :(得分:0)

:focus

.EPbutton:focus {
border-bottom: 2px solid red;
color:red;
cursor: pointer;
}