.image-container { position: relative; display: inline-block; text-align: center; } .navigation-buttons { position: absolute; top: 50%; transform: translateY(-50%); width: 100%; text-align: center; } .prev-button, .next-button { background-color: #333; color: #fff; padding: 10px 20px; border: none; border-radius: 4px; margin: 0 10px; cursor: pointer; } .prev-button:hover, .next-button:hover { background-color: #555; } echo " <div class='image-container'> <img src='data:image/jpeg;base64,$show_image' alt='图片'> <div class='navigation-buttons'> <button class='prev-button'>上一张</button> <button class='next-button'>下一张</button> </div> </div> "; 代码中<img src='data:image/jpeg;base64,$show_image' alt='图片'>无法将图片在网页的中间显示?
时间: 2024-03-24 08:36:35 浏览: 386
如果图片不能在网页中间显示,可能有以下几个原因:
1. 图片本身的大小不够大,无法占满父容器,导致无法居中显示。可以尝试给图片添加 `width: 100%;` 或 `max-width: 100%;` 来让其占满父容器。
2. 父容器的宽度不够大,无法容纳图片和导航按钮。可以尝试增加父容器的宽度或使用 `margin: 0 auto;` 来让其水平居中。
3. 其他样式的影响。可以检查其他样式是否会影响图片的居中显示。
修改后的代码如下:
```css
.image-container {
position: relative;
display: inline-block;
text-align: center;
width: 100%;
}
img {
max-width: 100%;
}
.navigation-buttons {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 100%;
text-align: center;
}
.prev-button,
.next-button {
background-color: #333;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 4px;
margin: 0 10px;
cursor: pointer;
}
.prev-button:hover,
.next-button:hover {
background-color: #555;
}
```
注意,这里给 `.image-container` 添加了 `width: 100%;` 和给 `img` 添加了 `max-width: 100%;`,以确保图片能够占满整个父容器。同时,也可以尝试在 `img` 中添加 `margin: 0 auto;` 来让其水平居中。
阅读全文