好吧,所以我想設置模式並排按鈕。一個是下載鏈接,另一個是鏡像。我嘗試使用顯示器的CSS創建我自己的類:inline-block;但那沒有奏效。我如何讓他們並排?我如何使兩個引導按鈕並排?
繼承人我爲我的模態代碼:
<!-- Texturepack Popup Start -->
<div class = "modal fade" id = "texturepack" role = "dialog">
<div class = "modal-dialog">
<div class = "modal-content">
<div class = "modal-header">
<h4>Texture Pack Download</h4>
</div>
<div class = "modal-body">
<center><h3>Download our Custom Texture Pack!</h3></center>
<p class = "tpbutton btn-toolbar">
<a style = "margin: 0 200px; display: inline-block" class = "btn navbar-btn btn-primary pull-center" href = "#" target = "_texturepack">Download</a>
<a style = "margin: 0 300px; display: inline-block" class = "btn navbar-btn btn-default pull-center" href = "#" target = "_texturepack">Mirror</a>
</p>
<!-- Carousel Text Start -->
<div style = "height:15px"></div>
<div style = "border: 2px solid black; width: 500px; margin: 0 auto" id = "textureCarousel" class = "carousel slide">
<ol class = "carousel-indicators" data-ride = "carousel">
<li data-target = "#textureCarousel" data-slide-to = "0" class = "active"></li>
<li data-target = "#textureCarousel" data-slide-to = "1"></li>
<li data-target = "#textureCarousel" data-slide-to = "2"></li>
</ol>
<div class = "carousel-inner">
<div class = "item active">
<img src = "img/a.png" alt = "Beach" class = "img-responsive">
</div>
<div class = "item">
<img src = "img/b.png" alt = "Beach" class = "img-responsive">
</div>
<div class = "item">
<img src = "img/c.png" alt = "Beach" class = "img-responsive">
</div>
</div>
</div>
<!-- Carousel End -->
</div>
<div class = "modal-footer">
<a class = "btn btn-danger" data-dismiss = "modal">Close</a>
</div>
</div>
</div>
</div>
<!-- Texturepack Popup End -->
它們在這個版本中是如何顯示的?第一個下面的第二個? – patrick