徽标定位问题

时间:2014-11-23 18:08:24

标签: html css position center

网址:http://ruslanchik.ru/go

您好,我遇到了尝试使我的徽标在页面中心的特定困难。我尝试了 margin:auto vertical-align:middle text-align:center ,但它根本没有帮助。

div的风格:

#logo {
width:100%;
top:25%;
margin:auto;
position:absolute;
width:667px;
height:32px;
background:url(../i/logo.png) no-repeat;

需要:水平居中的徽标。

非常感谢。

1 个答案:

答案 0 :(得分:1)

尝试此操作并将#logo移出中心标记。你不再需要中心标签了。

#logo {
    width: 100%;
    height: 190px;
    background: url(../i/logo.png) no-repeat center;
}