当我将图像的位置更改为固定时,它会向右移动,我无法弄清楚如何让它回到我的页面中心并且仍然使用 position:fixed 属性。请帮忙
提前谢谢你!
CSS:
header {
height: 60px;
color: #413659;
background-color: #413659;
margin-top: 30px;
}
#logo {
height: 100px;
width: 100px;
margin-left: auto;
margin-right: auto;
position: fixed;
top: 10px;
}
HTML:
<header>
<img src="http://i.imgur.com/IdtgpVa.png" alt="DP" id="logo">
</header>