我的網站上有一個按鈕,我使用的是獨立於分辨率的對齊方式。我檢查了兩種不同分辨率的電腦屏幕,但它看起來很好,但是一旦在較大的寬高比屏幕或移動/平板設備上打開,它就會重新定位。在較大的寬高比屏幕上,按鈕向左移動,在較小的設備上,它向右漂移。我不是100%確定會出現什麼問題。以下是我的CSS和HTML代碼。即使分辨率獨立對齊,按鈕也不居中
HTML:
<div class="Welcome">
<h1>Welcome to Beauty Factory Bookings</h1>
<a href="website_link"><button>Book Appointment</button></a>
</div>
CSS:
body {
background: url('http://i.imgur.com/4mKmYMb.jpg') no-repeat fixed center center;
background-size: cover;
font-family: Montserrat;
margin: 0;
padding: 0;
.Welcome {
margin-top: 13%;
}
.Welcome h1 {
text-align: center;
font-family: Montserrat;
font-size: 50px;
text-transform: uppercase;
}
.Welcome button {
height: 60px;
width: 340px;
background: #ff656c;
border: 1px solid #e15960;
color: #fff;
font-weight: bold;
text-transform: uppercase;
font-size: 17px;
font-family: Montserrat;
outline: none;
cursor: pointer;
text-align: center;
margin-left: 33%;
margin-top: 3%;
border-radius: 5px;
}
任何想法如何解決這一問題?
你真的需要創建一個[MCVE(http://stackoverflow.com/help/mcve)。基本上這意味着,除非您不能使按鈕在這裏表現得像您網站上的按鈕,否則我們無法爲您提供幫助。 –
只是做我所做的使用彈性盒。 – Guille
我試過了,它仍然不起作用。你的解決方案可能非常好,我認爲我的代碼其餘部分也有問題。 –