1
我嘗試做一個bootstrap
和footer
我需要移動span
元素,這個人是一個column
建立其與col-sm-4
class
,如何能打動我這一個實例20px
whitout影響響應式設計的whitin。下面我把關於footer
和html
結構和css
的圖像。我感謝任何幫助。如何在自舉中移動一列白色的元素?
<footer class="footer">
<div class="container-fluid">
<div class="row">
<div id="location" class="col-sm-4 col-xs-3">
<span>Location</span>
</div>
<div id="info" class="col-sm-4 col-xs-3">
<span>Info about me</span>
</div>
<div id="created" class="col-sm-4 col-xs-3">
<p>texto</p>
</div>
</div>
</div>
</footer>
CSS:
.footer{
position: fixed;
bottom:0%;
height: 100px;
width: 100%;
background-color: #2c3e50;
}
#location{
background-color: white;
height: 50px;
}
#info{
background-color: gray;
height: 50px;
}
#created{
background-color: blue;
height: 50px;
}
20px的? –
我想在右側移動位置。 –
您可以添加移動空間20px –