當我將圖像的位置更改爲固定時,它會熄滅到右側,我無法弄清楚如何將其恢復到頁面中心並仍然使用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>
分享您的代碼,請 –
我爲您建立的jsfiddle:http://jsfiddle.net/2eqYe/到底有什麼不對勁? – Ruben