如果我将以下幻灯片添加到reveal.js提供的默认演示文稿中,则表格不会居中。
<section>
<p>This is centred</p>
<table>
<tr>
<td>This</td>
<td>is</td>
<td>not</td>
</tr>
</table>
</section>
我可以通过添加填充来修复它,但这取决于屏幕大小,我担心当我去现在时屏幕将是不同的大小。必须有更好的方法吗?
答案 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>