我简直不敢相信谷歌搜索还没有找到答案——你不能在 wordpress 简单图片库中垂直居中图像,这太疯狂了. 经过一番折腾 CSS 我找到了一个简单的答案
By default wordpress image gallerys are given a class ‘gallery’ and all that was needed was to apply some flexbox CSS to this gallery. For older browsers that don’t support flexbox they will just fall back to the non vertically centered gallery which isn’t the end of the world.
1 2 3 4 5 6 | .gallery { display: flex; flex-flow: wrap; align-items: center; } |
就是这样! It works with captions both on and off and doesn’t care how many columns or rows there are in your gallery.
请通过下面的评论给我们你的想法! 如果您想订阅,请使用菜单上的订阅链接右上方. 您还可以通过使用下面的链接社会分享这与你的朋友. 干杯.
发表评论