有一個社交菜單,我需要將其一直浮動到我的頁面右側並保持固定。然而,它隨機浮動在某處。只是尋找一個可能的修復Div不完全浮動到右側
這裏是小提琴:http://jsfiddle.net/m7vaywmh/
HTML
<div class="social_wrap">
<div class="social">
<a href="https://www.linkedin.com/profile/view?id=387766698&trk=nav_responsive_tab_profile" target="_blank"><img class="move" src="images/linked.png"/></a>
<a href="https://www.behance.net/lukerbab3a51" target="_blank"><img class="move" src="images/behance.png"/></a>
<a href="http://factordog.deviantart.com/" target="_blank"><img class="move" src="images/deviant.png"></a>
<a href="https://www.youtube.com/channel/UCMM-HzbbBtU6DhNlUL71rrQ" target="_blank"><img class="move" src="images/yt.png"/></a>
<a href="https://www.facebook.com/LukebMedia?sk=timeline&app_data" target="_blank"><img class="move" src="images/fb.png"/></a>
</div><!--social -->
</div>
CSS:
.social_wrap{
background:#3F3;
width:100%;
height:60px;
position:fixed;
z-index:5001;
}
.social{
position:relative;
float:right;
width:45%;
right:0px;
margin-top:15px;
}
.social img{
width:5%;
min-width:15px;
padding-right:10px;
}
其完美。剛剛去了,自己做了。感謝那裏的幫助m8。當它讓我:)將作爲正確的答案:) – factordog