在 Chrome 和 Safari 中居中表格时遇到问题
我不确定我做错了什么。我似乎无法将两张图像放在右侧的 2 个图像之间。适用于 Firefox、Opera、ie8。 XHTML 和 CSS 验证。
I am not sure what I am doing wrong. I cannot seem to center table with two images between 2 in side the right . Works in firefox, opera, ie8. XHTML and CSS validates.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
关于居中的一些注意事项。
margin:0 auto;
display:block;
如果您显示一些代码,我确信这是一个简单的修复。
A few notes on centering.
margin:0 auto;
on that elementdisplay:block;
If you show some code I'm sure it's a simple fix.
尝试显式设置宽度和边距以添加到 100%:
宽度:90%;左边距:5%;右边距:5%;
Try setting the width and margin explicitly to add to 100%:
width:90%;margin-left:5%;margin-right:5%;