tables和div元素不以reveal.js为中心

时间:2013-12-14 12:33:20

标签: reveal.js

如果我将以下幻灯片添加到reveal.js提供的默认演示文稿中,则表格不会居中。

  <section>
  <p>This is centred</p>

  <table>
    <tr>
      <td>This</td>
      <td>is</td>
      <td>not</td>
    </tr>
  </table>
  </section>

enter image description here

我可以通过添加填充来修复它,但这取决于屏幕大小,我担心当我去现在时屏幕将是不同的大小。必须有更好的方法吗?

1 个答案:

答案 0 :(得分:4)

根据this和我的测试,如果您将reveal类添加到表中,则最新的reveal.js应该居中。

  <section>
  <p>This is centred</p>

  <table class="reveal">
    <tr>
      <td>This</td>
      <td>is</td>
      <td>not</td>
    </tr>
  </table>
  </section>