所以我有一个 YouTube API 可以拉出一个播放列表...如果结果超过 15 个,它会将 16-30 分到第 3 页,将 31-45 分到第 3 页,等等,并具有用于导航的“下一页”“上一页”按钮.
当我添加 CSS 以使其与页面的其余部分匹配时,按钮重叠:http ://d.pr/i/BpIc
这是HTML:
<div class="button-container back_image">
<img src="Pictures/Footer.jpg" width="1060" height="75">
<button id="prev-button" class="paging-button" onclick="previousPage();">Previous Page</button>
<button id="next-button" class="paging-button" onclick="nextPage();">Next Page</button>
</div>
相关CSS:
.back_image{
width: 1060px;
height:auto;
margin: auto;
text-align:center;
position:relative;
}
.paging-button {
visibility: hidden;
position: absolute;
margin: auto;
top: 0;
left:0;
right:0;
bottom:0;
color:#fff;
height:25px;
background-color: rgba(0, 0, 0, .3);
width: 1060px;
color: white;
}
关于我做错了什么有什么想法吗?