css中div边框外发光怎么设置

html-css05

css中div边框外发光怎么设置,第1张

.xx{  box-shadow: 0 0 15px #4E4E4E padding:10px }

这两个0是  左右  上下。用px调整。如果是0就是居中。

15px是你要光圈。越大就范围就越广。类似于病毒扩散那种感觉.padding可无视,是为了放你class一个span或button自己就撑开了

div{width: 200pxheight: 200pxbackground: #dadadaborder:5px solid redanimation: shine 1s alternate infinite}

@keyframes shine{

from{border-color: rgba(0,0,0,0)}

to{border-color: rgba(0,0,0,1)}

}