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.
我正在尝试在 CSS 中将表格及其行居中。
我可以使用以下方法使表格居中:
table.Center { margin-left:auto; margin-right:auto; }
但是当我尝试在表格行上调用类似的东西时,我最终得到以下结果:
期望的结果是:
XX XXXX XXXX
为了视觉,使用两个而不是三个。
如何将表格行居中到页面?
CSS解决方案:
table { text-align:center } td { display:inline-block }
http://jsfiddle.net/gz3X2/