我有一张背景图片,我试图把按钮放在某个地方的中间底部。但是当我将浏览器移动到屏幕的左侧或侧面时,按钮会略微移动。但我希望它能保持原状。有人能告诉我我做错了什么吗? 以下是我的CSS。
body
{
margin:0;
padding :0;
background:url(ht.JPG);
background-attachment: fixed;
background-position: 50% 50%;
background-size:cover;
background-repeat: no-repeat;
font-family:sans-serif;
}
#loginbutton
{
font-weight: bold;
font-size:18px;
opacity:0.6;
align-items: center;
text-align:center;
border:none;
height:100px;
width:100px;
border-radius: 50%;
background:transparent;
color:black;
background-color:#EAEAEA;
position: absolute;
top:69%;
left:45%;
}
下面是我在html的按钮。
<a href="register.html" ><button type="submit" value="Submit" id="loginbutton">Login</button></a>
答案 0 :(得分:0)
我尝试将背景图像拟合到窗口高度:
[https://jsfiddle.net/n09sos3c/3/][1]
请注意,这不会确保在非常小的窗口分辨率下按钮仍然无法放在正确的位置,因为图像会缩小,但按钮不会。
您可以在此处了解背景简写:https://css-tricks.com/almanac/properties/b/background/