My ' Нажмите здесь, чтобы связаться с нами! ' кнопка придерживается середины страницы вместо того, чтобы плавать внизу, вот код и приложенное изображение.Недавно я столкнулся с проблемой, когда кнопка изменяла размер при нажатии, которая была исправлена, однако теперь моя проблема заключается в том, что она плавает в середине страницы.
Это проблема с установленным полем или высотой?
![Photo of the button floating in the middle right, whereas it is meant to be in the bottom left.](https://i.stack.imgur.com/VQcTe.png)
![How the button is meant to be (bottom right)](https://i.stack.imgur.com/Ma2bg.png)
* 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: block;
font-size: 17px;
font-family: 'Roboto, Sans Serif';
text-decoration: none;
color: #000000;
padding: 16px 31px;
position: absolute;
right: 50px;
bottom: 30px;
text-align: center;
transition: 0.5s;
margin: auto;
}
.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;
}
<!--Button Bottom Right-->
<a href="mailto:example@example.com?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-->