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.
目前我在居中时得到了这段代码
#galleria{ width: 700px; height: 400px; background-color: #000;
但是,我希望画廊显示在中间,它只显示在右上角,我使用 jquery,以及来自 www.galleria.io 的画廊,但是我无法将画廊居中,有什么办法吗?
我不知道为什么它会在正确的角落而不浮动它......
无论如何,您应该添加margin: 0 auto;到 css 中,例如:
margin: 0 auto;
#galleria{ width: 700px; height: 400px; background-color: #000; margin: 0 auto; }
确保它的容器也设置了宽度。