gpt4 book ai didi

css - 按钮没有反应。当屏幕尺寸改变时它们不会更新

转载 作者:行者123 更新时间:2023-11-28 09:09:48 26 4
gpt4 key购买 nike

我希望按钮在屏幕尺寸改变时更新。这两个按钮放在 img 上并用链接包裹。任何帮助表示赞赏。模板如下:

    <div class="img">
<img src="topimage.jpg"
<a href="#" ><button class="left-button">left</button></a>
<a href="#" ><button class="right-button">right</button></a>
</div>

CSS:

.left-button {
display: block;
position: absolute;
left: 8%;
top: 19%;
font-size: 115%;
font-weight: bold;
padding: 0.8em;
}
.right-button {
display: block;
position: absolute;
left: 37%;
top: 19%;
font-size: 115%;
font-weight: bold;
padding: 0.8em;
}
.img {
width: 100%;
display:inline-block;
position:relative;
}

最佳答案

您的按钮没有响应 img。您需要在按钮上设置宽度。喜欢:

.left-button { 
width:30%;
//your css
}

Working fiddle

关于css - 按钮没有反应。当屏幕尺寸改变时它们不会更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26550170/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com