-2
A
回答
1
.bottomdiv {
border: 1px solid red;
height: 50px;
width: 50px;
position:absolute;
left:0;
bottom:0;
}
.col-md-6.col-sm-6.col-xs-6 {
display: table-cell;
height: auto;
border: 1px solid black;
float: none;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>
<div class="container">
<div class="row">
<div class="parent">
<div class="col-md-6 col-sm-6 col-xs-6">
<div class="bottomdiv">
</div>
</div>
<div class="col-md-6 col-sm-6 col-xs-6">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
</div>
</div>
</div></div>
1
您可以將該列設置爲flexbox並將該元素對齊到最後。
.row {
background: red;
}
.col-6-md {
background: lightblue;
height: 200px;
display: flex;
}
.bottom {
background: green;
align-self: flex-end;
width: 100px;
height: 50px;
}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" />
<div class="row">
<div class="col-6-md">
<div class="bottom">Bottom</div>
</div>
</div>
+0
哦,我發現了這個問題。高度必須保持靈活。 –
0
您也可以嘗試使用絕對CSS功能 .bottom position:absolute;bottom:0;left:0;
然後檢查的位置,改變它適合你
相關問題
- 1. 如何將元素列表對齊到底部?
- 2. 在多列底部對齊元素
- 3. 如何將div對齊到父元素的底部
- 4. 如何將浮動元素對齊到其容器的底部
- 5. 如何在Mathematica中將行[]的元素對齊到底部還是頂部?
- 6. 如何底部對齊DIV元素中的兩個元素?
- 7. 將元素與父元素和中心的底部對齊
- 8. 如何從底部到頂部對齊HTML元素?
- 9. 將元素對齊到HTML表格的底部單元格
- 10. 將元素對齊到每個flexbox的中心底部
- 11. 如何在打印預覽中將元素對齊到頁面底部
- 12. Bootstrap元素對齊
- 13. Android如何將RelativeLayout對齊到底部?
- 14. 如何將RelativeView對齊到底部
- 15. 將ul對齊到底部
- 16. 底部對齊在底部下方的元素= 0px
- 17. 浮動右元素對齊底部CSS?
- 18. 對齊元素上一行的底部
- 19. 將文本對齊到A元素的底部
- 20. 無法將圖像對齊到li元素的底部
- 21. Bootstrap 3 - 將按鈕對齊到底
- 22. 如何對齊底部父div中的元素100%
- 23. 如何在一個元素的底部對齊圖像?
- 24. 如何在Bootstrap 3中將一個元素填充到其容器的底部?
- 25. bootstrap水平對齊元素
- 26. 使用Bootstrap導航條垂直對齊列表項到底部
- 27. 如何將頁腳第二列對齊到底部?
- 28. 在RaphaelJS中,如何將旋轉文字對齊到底部?
- 29. 在Bootstrap頁面底部的元素
- 30. Twitter Bootstrap從底部對齊下拉框
父相對而言,並在方塊中出現ute和left:0和bottom:0 –
[使用CSS在div底部對齊按鈕的可能的副本](https://stackoverflow.com/questions/5817233/align-button-at-the-bottom-of-div -using-css) –
發佈你的代碼伴侶。所以我們可以幫助你。 :) –