我是新的引导和学习新的东西,我试图把引导按钮的屏幕中心在底部的位置,到目前为止,我的代码是
.bottom-center {
position: absolute;
bottom: 0;
}
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet" />
<p>Just a test of placing the button in center of the screen at bottom position</p>
<div class='bottom-center'>
<button type='button' class='btn btn-primary btn-large btn-start'>Center</button>
</div>
1条答案
按热度按时间fiei3ece1#
不需要任何附加的CSS来实现这一点。
1.第一件事:使用bootstrap 4而不是3。(bootstrap 3太旧了)
1.将类
fixed-bottom
添加到按钮容器中,使其位于屏幕底部。1.将
d-flex justify-content-center
添加到按钮容器中,使其居中阅读更多关于flex属性在bootstrap here中