居中仅适用于固定定位,而非绝对定位

时间:2016-01-14 16:06:22

标签: css position centering

我有一个div,我试图将图像居中。如果将位置设置为固定,则它会完美居中,但是当位置设置为绝对时,图像会向右偏移几个像素。

我无法将位置设置为固定,因为当用户点击某些内容时,此div会从顶部滚动,所以直到那一刻我才能看到它。我以前从未遇到过这个问题。谁能告诉我什么是错的?

HTML:

<div class="header">
    <img class="logo" src="img/navbar_title.jpg"/>
    <img class="tab" src="img/mid_tab.png" /><!-- image to be centered -->
    <div class="header_social">
        <img src="img/button_pg.jpg" />
        <img src="img/button_facebook.jpg" />
        <img src="img/button_twitter.jpg" />
    </div>
</div>

的CSS:

.header
{
position:fixed;
top:-100px;
width:100%;
height:30px;
padding:10px;
background-color:black;
color: white;
z-index:10;
margin-top:0px;
box-shadow: gray 3px 0px 10px;
}

    .header .logo
    {
        position: absolute;
        top: 10px;
        z-index: 4;
        left: 20px;
    }
    .header .tab { /* not working right */
        position: absolute;
        top: 0;
        z-index: 4;
        left: 50%;
        transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
    }

    .header h1
    {
    font-family: Helvetica, sans-serif;
    font-weight: bold;
    font-size:14pt;
    display:inline-block;
    line-height:30px;
    float:left;
    margin-top: 0;
    margin-left: 20px;
    letter-spacing: .05em;
    color: #303030;
    }

    .header .header_social
    {
    float:right;
    height:30px;
    line-height:30px;
    width:150px;
    }

1 个答案:

答案 0 :(得分:0)

这是由于盒子大小调整。当您定位固定时,它相对于整个屏幕,周期。当您定位绝对值时,它相对于最近的非静态位置父级。在你的情况下,这是你的div.header。你的div.header有一个填充和100%的宽度,所以它实际上是100%+ 20.在你的div.header上设置box-sizing:border-box,你的图像将向左移动几个像素。 :)