在 Chrome 和 Safari 中居中表格时遇到问题

发布于 2024-11-08 17:56:34 字数 80 浏览 0 评论 0原文

我不确定我做错了什么。我似乎无法将两张图像放在右侧的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

寻梦旅人 2024-11-15 17:56:34

关于居中的一些注意事项。

  1. 始终为您尝试居中的对象提供宽度
  2. 一旦设置了宽度,则在该元素上使用 margin:0 auto;
  3. 享受看到您的代码居中...
  4. 另外,如果您的元素是内联的(锚点、跨度等)确保将元素显示为 display:block;

如果您显示一些代码,我确信这是一个简单的修复。

A few notes on centering.

  1. Always provide a width to the object you are trying to center
  2. Once a width is set then use margin:0 auto; on that element
  3. Enjoy seeing your code centered...
  4. Also, if your element is inline (anchor, span, etc) make sure you display the element as display:block;

If you show some code I'm sure it's a simple fix.

梦年海沫深 2024-11-15 17:56:34

尝试显式设置宽度和边距以添加到 100%:
宽度:90%;左边距:5%;右边距:5%;

Try setting the width and margin explicitly to add to 100%:
width:90%;margin-left:5%;margin-right:5%;

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文