我有一个简单的问题。我已经创建了一个具有CSS属性的按钮,但是如果我使用button:active并尝试设置动画效果,则在按钮的顶部和左侧都会出现一些令人讨厌的“阴影”,这无关紧要。如何删除它们?我是Stack Overflow的新手,我希望我在这里没有做任何错:)
button {
width: 50px;
height: 50px;
font-size: 30px;
text-align: center;
transition: 0.3s;
background-color: white;
border-width: 0px;
box-sizing: border-box;
color: grey;
border-color: rgb(70, 196, 255);
box-shadow: none;
}
button:hover {
border-left-width: 5px;
}
button:active {
border-color: rgb(123, 20, 80);
}
button:focus {
outline: 0;
}
body {
background-color: black;
}
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<button></button>
</body>
border-style: solid
来解决此问题button:active {
border-color: rgb(123, 20, 80);
border-style: solid
}
然后使用速记版本border
在同一行中定义宽度,样式和颜色可能会更容易。>border
button { width: 50px; height: 50px; font-size: 30px; text-align: center; transition: 0.3s; background-color: white; border-width: 0px; box-sizing: border-box; color: grey; border-color: rgb(70, 196, 255); box-shadow: none; } button:hover { border-left-width: 5px; } button:active { border-color: rgb(123, 20, 80); border-style: solid; } button:focus { outline: 0; } body { background-color: black; }