我添加了积极的伪类到我的HTML按钮,我希望他们缩小时,他们被点击…问题是它们会影响到页面上的每一个元素。我只想让按钮缩小,每个元素都应该保持静止...
这是我的纽扣:
<div class="btn-container">
<button id="btn-start" class="btn">Start</button>
<button id="btn-stop" class="btn">Stop</button>
<button id="btn-reset" class="btn">Reset</button>
</div>
它们的基本样式:
.btn-container .btn{
background: #fe2f6d;
border: none ;
padding: 20px 50px;
margin: 0px 0 0 10px;
color: #fff;
font-weight: 400;
font-size: x-large;
border-radius: 7px;
cursor:pointer;
}
以及活动伪:
.btn:active{
padding: 18px 48px;
}
1条答案
按热度按时间yjghlzjz1#
我在这里使用CSS
scale
属性,而不是改变填充: