【发布时间】:2020-04-17 12:57:29
【问题描述】:
我想在输入标签上重新创建这种“聚焦蓝色发光”效果,如下所示:
这是我的努力:
input:focus{
outline-color : lightskyblue;
outline-width : 5px;
border : 1px solid blue;
}
input{
padding : 0;
line-height : 35px;
border-radius : 5px;
border : 1px solid black;
width : 500px;
}
<input type="text" />
但轮廓非常小,不易察觉。而且轮廓也没有圆角。
那么如何重现效果呢?
【问题讨论】:
-
P.S 我不想要任何图书馆。零依赖
标签: javascript html css