中心对齐排行榜广告

时间:2014-06-19 19:51:34

标签: html css leaderboard

努力在Dots & Dashes上集中对齐排行榜广告 - 在某些页面上正确定位,并在其他几个页面上错误地定位,看似它。

已应用<div class="center">AD CODE</div>标记,虽然这似乎没有做到这一点......

任何建议都会非常感激,总是如此! 感谢。

2 个答案:

答案 0 :(得分:0)

你的意思是水平或垂直居中吗?

要水平居中,您可以将以下内容添加到页面顶部(<head></head>部分内):

<style type="text/css">
    .center {
        text-align:center;
    }
</style>

以上将控制您指定的类(中心)并添加text-align:center;它。

如果您希望垂直居中,请发布JSFiddle

答案 1 :(得分:0)

要在DIV中水平居中,请使用以下代码...

<style type="text/css">
    .center {
        text-align:center;
    }
</style>

但要在WINDOW和DIV中水平居中,试试这个......

<style type="text/css">
    .center {
        text-align: center;
        margin: 0 auto;
    }
</style>
相关问题