Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的页面上列出了三个短代码,它们不在同一行。将图像控制为每行 3 个的简单方法是什么?我有一个 CSS 插件,它可以让我使用 DIV 标记来分配一个 DIV 来控制对齐。我阅读了很多与此相关的答案,但我对正确应用每种技术的编码知之甚少。请帮忙。视频源会很棒!
似乎有点不清楚,但如果图像在 DIV 中并且您想要水平对齐而不是垂直对齐,您可以使用类似的东西:
#idofthediv img { display: inline-block; vertical-align: top; //not necessary, but it's likely you'll want to do this }
希望这会有所帮助。