在调整窗口大小时,我希望徽标“跟随居中背景(图片)的移动”。可能吗 ?我已经尝试了很多东西,但是无法得到它。
背景
div.container{
width:1164px;
height: 776px;
margin:0px;
border:none;
line-height:150%;
background-image: url('background');
background-repeat: no-repeat;
background-attachment:fixed;
background-position:left:45px;top:20px;
}
标志
<img style="position:fixed;left:45px;top:20px;" src="/logo" width="205" height="234" alt="logo"/>
答案 0 :(得分:0)
如果您尝试仅水平居中内容,可以尝试 div.container {margin:0 auto} 并将背景图像放在身体上 body {background-image:url('background'); background-position:50%0px;}