Gutenberg Gallery Block–相同尺寸的图片修复

发布于 2025-01-19 04:43:11 字数 599 浏览 0 评论 0原文

我只想分享古腾堡画廊的快速修复程序,因为我在其他地方找不到修复程序。解决方法:

  • 问题:如果您将不同尺寸的图像上传到图库,则缩略图在每行上显示的高度不同。 修复:所有图像都将具有正方形形状。
  • 问题:将 4 张照片添加到 3 行古腾堡画廊块时,第四张照片始终占据容器的整个宽度。 修复:每个图像将保持相同的宽度。

古腾堡画廊第 4 行图像尺寸问题:

古腾堡画廊图像第 4 行大小问题

古腾堡画廊块相同大小修复:

古腾堡画廊图像第四行大小修复

I just want to share a quick fix for the Gutenberg gallery since I couldn't find the fix anywhere else. What will fix:

  • Problem: If you upload images to your gallery that have different sizes, the thumbnails are displayed in different heights on each row. Fix: All images will have a squared shape.
  • Problem: When adding 4 photos to a 3 rows Gutenberg Gallery Block, always the 4th picture takes the entire width of the container. Fix: Each image will keep the same width.

Gutenberg Gallery Block 4th row image size issue:

gutenberg gallery image 4th row size issue

Gutenberg Gallery Block same size fix:

gutenberg gallery image 4th row size fix

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

时光瘦了 2025-01-26 04:43:11

简单的CSS修复:

.wp-block-gallery.has-nested-images figure.wp-block-image img {
  aspect-ratio: 1; /* squared size thumbnails */ 
}
.wp-block-gallery.has-nested-images figure.wp-block-image {
  flex-grow: 0; /* width fix */ 
}

Simple CSS Fix:

.wp-block-gallery.has-nested-images figure.wp-block-image img {
  aspect-ratio: 1; /* squared size thumbnails */ 
}
.wp-block-gallery.has-nested-images figure.wp-block-image {
  flex-grow: 0; /* width fix */ 
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文