Imagine I have such a button:
#btnred{
color:#fd9898;
background:none;
border:none;
cursor:pointer;}
And when I hover on it, the box-shadow appears, but it appears behind the background of the button.
#btnred:hover{
box-shadow:0 0 10px #605894;
transition:0.4s;}
How do I completely remove the background so that box-shadow appears right behind the text of that button?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…