当窗口调整大小时,固定标题中的图像会移动

时间:2013-06-17 18:03:42

标签: html css

我的页面上有一个固定的标题,标题内部是一个图像。我喜欢它在调整窗口大小时保持原位。

我尝试过不同的定位标签和包装器div,但我不能做正确的事情。

我的CSS如下

.header {
    background: url("#") repeat-x scroll left top transparent;
    height: 70px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

#headbar {
   position:fixed;
   z-index: 99999;
   left:0px;
   top:0px;
   height:50px;
   width:100%;
   background:#273D90;
   padding-top: 10px;
   box-shadow: 0 0 50px 0;
}

#headbar img {
    display: block;
    text-indent: -9999px;
    left: 5%;
    overflow: hidden;
    /*margin: 0 0 0 5%;*/
    position: fixed;
    float: left;
}

.imgwrap{
    float: left;
    position: absolute;
}

#logo {
    float: left;
    margin-right: 50px;
    margin-top:25px;        
}

我的HTML是

<div class="header">
    <div id="headbar">
        <div class="imgwrap">
            <a href="index.html"><img alt="logo" src="images/whitelogo.png" height="50" width="100"></a>
        </div>
    </div>  
</div>

2 个答案:

答案 0 :(得分:1)

您的标题是页面宽度的100%。您的图片位于left: 5%。这是标题宽度的5%。由于标题在窗口时调整大小,因此5%会发生变化。使用pxem的固定值,它不会移动。

http://jsfiddle.net/vfvxE/

答案 1 :(得分:0)

#headbar img {
    display: block;
    text-indent: -9999px;
    left: 5%; /*  <--  % is relative */
    overflow: hidden;
    /*margin: 0 0 0 5%;*/
    position: fixed;
    float: left;
}

您必须使用 NOT 亲戚单位才能达到您想要的效果。尝试使用Absolute lengths units:'cm','mm','in','pt','pc','px'单位