如何使我的BS sidenav在右边?

时间:2017-12-02 21:50:38

标签: html css twitter-bootstrap-3

有点新手问题,所以我道歉。目前,这个sidenav在左边,我怎么能让它向右转?

#sidebar-wrapper {
  top: 52px;
  left: -200px;
  width: 200px;
  background-color: #27CD70;
  color: white;
  position: fixed;
  height: 100%;
  z-index: 1;
}
		<div id="sidebar-wrapper" class="sidebar-toggle">
			<ul class="sidebar-nav">
		    	<li>
		      		<a href="#item1">Item 1</a>
		    	</li>
		    	<li>
		      		<a href="#item2">Item 2</a>
		    	</li>
		    	<li>
		      		<a href="#item3">Item 3</a>
		    	</li>
		  	</ul>
		</div>

1 个答案:

答案 0 :(得分:0)

使用

" float:right; "

或开始给它左边距。这应该可以解决问题。