图库图像在 IE 中换行,但在其他浏览器中不换行
情况如下:我的 WordPress Gallery 在 Firefox、Safari 等中看起来不错,但在 IE 上运行(在Windows),图库中的最后一个图像换行到下一行。
到目前为止,我已经尝试调整图库宽度、填充、内联、块和更改列数,但均无济于事。该行有足够的空间来容纳图像。
以下是我认为相关的 CSS 位:
#gallery-1 {
float: right;
height: 70px;
margin: 1px;
padding-bottom: 20px;
width: 480px;
}
.gallery-icon {
width: 55px;
padding: 3px;
margin: 0;
float: left;
}
.gallery-columns-7 {
padding: 0;
margin: 0;
}
.gallery-item {
float: left;
margin: 3px;
padding: 0 2px 0 0;
width: 55px;
}
有人有什么想法吗?
Here's the situation: my WordPress Gallery looks fine in Firefox, Safari, etc. but running on IE (under Windows), the the last image in the gallery wraps to the next line.
So far, I've tried adjusting the gallery width, padding, inline, block, and changing the number of columns to no avail. There is plenty of room on the row to fit the images.
Here's what I think are the pertinent CSS bits:
#gallery-1 {
float: right;
height: 70px;
margin: 1px;
padding-bottom: 20px;
width: 480px;
}
.gallery-icon {
width: 55px;
padding: 3px;
margin: 0;
float: left;
}
.gallery-columns-7 {
padding: 0;
margin: 0;
}
.gallery-item {
float: left;
margin: 3px;
padding: 0 2px 0 0;
width: 55px;
}
Anyone have any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
修复此问题
要么将其更改为 1px,要么删除它们,或者仅删除 styles.css 第 1219 行中的右侧或左侧边距
Fix this
Either change it to 1px or delete them or delete just the right or left margin in the styles.css line 1219
尝试在
.gallery-item
类中设置overflow: hide;
。Try setting
overflow: hidden;
in your.gallery-item
class.