작성
·
231
답변 2
0
html이 없어서 테스트를 못해보지지만 아마도 outline 때문에 그런 것 같습니다.
outline: none을 주세요.
다음에 질문하실 때는 html 코드도 같이 올려주세요.
0
.login{
box-shadow: 0 0 20px rgba(0, 0, 0, 0.253);
padding: 30px;
width: 600px;
background-color: rgba(128, 128, 128, 0.041);
}
.login span{
display: block;
margin:20px 0 5px 0;
}
.login input[type=email],
.login input[type=password]{
width: 100%;
height: 40px;
padding: 0 10px;
padding-left: 40px;
box-sizing: border-box;
border-radius: 5px;
border: 1px solid #ddd;
}
.login input[type=email]{
background: url(images/icon-email.png) no-repeat center left 10px;
}
.login input[type=password]{
background: url(images/icon-lock.png) no-repeat center left 10px;
}
.login input[type=email]:focus::placeholder,
.login input[type=password]:focus::placeholder{
visibility: hidden;
box-shadow: 0 0 20px rgba(30, 143, 255, 0.753);
}
.login input[type=email]:focus,
.login input[type=password]:focus{
box-shadow: 0 0 20px rgba(30, 143, 255, 0.753);
border: 5px solid rgba(30, 143, 255, 0.753);
}
.login p{
overflow: hidden;
}
.login p label{
float: left;
font-size: 14px;
}
.login p a{
float: right;
text-decoration: none;
font-size: 14px;
}
.login input[type=button]{
width: 250px;
height: 40px;
font-size: 17px;
background-color: rgba(30, 143, 255, 0.212);
border: none;
border-radius: 5px;
}