如何解决Html 按钮在悬停时不会降低不透明度
我已经编写 HTML 和 CSS 大约一个星期了,过去 2 个小时我一直在解决为什么此按钮在悬停时不会降低其不透明度的问题。
button {
position: absolute;
background-color: #DE4642;
border-radius: 16px;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-family: "gotham_rounded_bold";
font-size: 16px;
transition: 0.3s;
}
.button1:hover {
opacity: 0.6
}
<div class="get_started">
<button class="button1">GET STARTED</button>
</div>
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。