我为BTEC Media课程做了一个登陆页面,但是我遇到了一个按钮问题。
当我点击我的号召性用语按钮时,按钮的长度会增加。我已经尝试将max-width设置为auto并改变边距但结果相同。
这是我的CSS和HTML
HTML代码
<!-- Contact Button Bottom Right-->
<a href="mailto:[email protected]?subject=Envirma Education | Media Production Unit 6&body=To the attention of sir/madam,
Envirma Education | Media Production Unit 6" class="call-to-action">Click here to contact us! <i class="far fa-envelope-open"></i>
</a>
<!-- End of Contact Call-To-Action-->
CSS代码
/* Call to Action */
.call-to-action {
background-color:#ffffff;
border:1px solid #ffffff;
-moz-border-radius:28px;
-webkit-border-radius:28px;
border-radius:28px;
display:inline-block;
font-size:17px;
font-family: 'Roboto, Sans Serif';
text-decoration:none;
color:#000000;
padding:16px 31px;
position: absolute;
display: block;
right: 50px;
bottom: 60px;
text-align: center;
}
.call-to-action a:hover {
background-color:#C6DDF0;
border:1px solid #C6DDF0;
}
.call-to-action a{
text-decoration: none;
color: #ffffff
}
.call-to-action:hover {
background-color:#C6DDF0;
}
.call-to-action:active {
position:relative;
top:1px;
}
感谢阅读和任何帮助提供。这可能是一个非常简单的解决方案,但我对编程很新,无法在网上找到与我的确切问题有关的任何结果。
您的活动主播类将您的按钮发送到顶部1px。只需删除它,它就不再跳跃了。也许你打算在点击时按下按钮1px。如果是这样,请尝试将margin-top增加1px:
.call-to-action {
background-color: #ffffff;
border: 1px solid #ffffff;
-moz-border-radius: 28px;
-webkit-border-radius: 28px;
border-radius: 28px;
display: inline-block;
font-size: 17px;
font-family: 'Roboto, Sans Serif';
text-decoration: none;
color: #000000;
padding: 16px 31px;
position: absolute;
display: block;
right: 50px;
bottom: 60px;
text-align: center;
}
.call-to-action a:hover {
background-color: #C6DDF0;
border: 1px solid #C6DDF0;
}
.call-to-action a {
text-decoration: none;
color: #ffffff
}
.call-to-action:hover {
background-color: #C6DDF0;
}
.call-to-action:active {
position: relative;
}
<a href="mailto:[email protected]?subject=Envirma Education | Media Production Unit 6&body=To the attention of sir/madam,
Envirma Education | Media Production Unit 6" class="call-to-action">Click here to contact us! <i class="far fa-envelope-open"></i>
</a>
只需删除活动锚类上的定位即可。
.call-to-action:active {
position:relative;
}
移除了以下锚点并取出了top
标签,因为它在点击/活动时移动它。
.call-to-action:active {
position: relative;
}
感谢MichaelvE的回复。