将 WordPress 幻灯片居中对齐
我有一个图片幻灯片,我试图将其居中对齐。目前,以下方法均不起作用:
<center></center>
#slideshow {text-align: center}
或通过 JS 设置样式。我在 http://voicesunited.tk/ 有一个模型,
如何将其居中?
I have a slideshow of pictures that I am trying to center align. Right now, none of the following work:
<center></center>
#slideshow {text-align: center}
or setting the style via JS. I have a mockup at http://voicesunited.tk/
How can I center it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个
try this
#slideshow-wrapper { 边距:0 自动; } 适用于大多数浏览器。
#slideshow-wrapper { margin: 0 auto; }
will work in most browsers.