新人,虚心求教,怎么实现input text点击后周围发光的效果和四个角是圆形
[解决办法]
随意套用一个input
以下是css:
input {
display: inline-block;
width: 210px;
margin-bottom: 9px;
line-height: 18px;
background-color: #ffffff;
border: 1px solid #cccccc;
border-radius: 3px;
transition: border linear 0.2s, box-shadow linear 0.2s;
}
input:focus {
border-color: rgba(82, 168, 236, 0.8);
outline: thin dotted \9;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
}