2014-02-28 3 views
0

나는 부트 스트랩 navbar를 가지고 있습니다. 코드 :Navbar item righting right CSS

<div align="center"> 
    <!-- Static navbar --> 
    <div class="navbar navbar-inverse navbar-fixed-top" role="navigation"> 
     <div class="container"> 
      <div id="nav_list" style="margin-top:30px; float:left;"></div> 
      <div id="logo"> 
       <a href=""><img src="" style="height:50px; margin-top:20px;"></a> 
      </div> 
      <img id="loading" src="images/loading.gif" 
       style="height:50px;margin-top:20px; display:none"> 
     </div> 
    </div> 

나는 그것의 왼쪽에 떠 네비게이션 바에과 nav_list의 중간에 강타를 유지하기 위해 이미지를 싶습니다. 그러나 지금 nav_list가 포함되면 왼쪽으로 떠 있지만 모든 이미지가 오른쪽으로 밀려납니다. 추가

#nav_list { 
    background: url(icon_nav.png) no-repeat left top; 
    cursor: pointer; 
    height: 27px; 
    width: 33px; 
    float:left; 
    margin-right: 0px !important; 
} 
#nav_list.active { 
    background-position: -33px top; 
} 

답변

0

:

#nav_list { 
    background: url(icon_nav.png) no-repeat left top; 
    cursor: pointer; 
    height: 27px; 
    width: 33px; 
    float:left; 
    position: absolute; /* <--- */ 
    text-align: center; 
} 

아주 멋지게 일을했습니다 여기

는 CSS입니다. 감사.