如何将 table 居中放置在容器中? (内联)HTML

How do I center a table in a container? (inline) HTML

我的容器 (960px) 中有一个 table,我想将它居中,但它似乎不起作用。我的代码在下面;

<table align="center;">

<tr><img alt="ZE40" src="images/showroom/volkracing.png" title=""   width="100%"></tr>

<tr> 
<td><img alt="ZE40" src="images/showroom/ze40.jpg" title=""></td>

<td><img alt="TE37" src="images/showroom/te37ultratrack.jpg" title="">  </td>

<td><img alt="TE37" src="images/showroom/te37ultra.jpg" title=""></td>

<td><img alt="TE37" src="images/showroom/te37ultral.jpg" title=""></td>

<td><img alt="TE37" src="images/showroom/g27.jpg" title=""></td>
</tr>

我试过各种对齐方法,none 似乎有效。另外,table 现在不会针对移动设备调整大小吗?但是,如果我删除 Table 行,它就会起作用。有任何想法吗?

   <center> <table align="center;">

<tr><img alt="ZE40" src="images/showroom/volkracing.png" title=""   width="100%"></tr>

<tr> 
<td><img alt="ZE40" src="images/showroom/ze40.jpg" title=""></td>

<td><img alt="TE37" src="images/showroom/te37ultratrack.jpg" title="">  </td>

<td><img alt="TE37" src="images/showroom/te37ultra.jpg" title=""></td>

<td><img alt="TE37" src="images/showroom/te37ultral.jpg" title=""></td>

<td><img alt="TE37" src="images/showroom/g27.jpg" title=""></td>
</tr>
</table></center>