我正面临CSS3的问题:在我的网站上,我有一个<DIV>
,其中包含一行包含一行和两列
我已设置宽度百分比(CSS),但面临问题。
在我的屏幕分辨率中,它被放置得很完美,但对于尺寸较大的屏幕,它会达到左边的尺寸,但我希望它在中心。
这是在http://www.dbadvices.com/正好位于菜单下方(有关于我们的事情)。
答案 0 :(得分:0)
使用此:
<table style="margin-left: auto;margin-right: auto;">
<tbody><tr>
<td id="fbfollow" width="33%"><a href="https://www.facebook.com/dbadvices"><img src="http://www.dbadvices.com/wp-content/uploads/2014/11/FollowUs.png" alt="Follow us on Facebook"></a></td>
<td id="adfollow" width="65%"><script async="" src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- DBAdvices -->
<ins class="adsbygoogle" style="display:inline-block;width:728px;height:90px" data-ad-client="ca-pub-0588760936983970" data-ad-slot="5129604783"></ins>
</td>
</tr>
</tbody>
</table>
始终记得在中心对齐表
margin-left: auto;margin-right: auto;
适用于所有决议。