3つのボタンを中央の右揃えで配置しますが、ブートストラップ4の画像に配置します。これはできません。position:relative
を適用して試してみました。画像とposition:absolute
がボタン上に表示されますが、それも機能していません。ブートストラップ4の画像の中央にボタンを配置する方法
<div class="container-fluid headerimage" style="padding:0 !important">
<div class="col-md-12" style="padding:0 !important">
<img src="images/banner.jpg" alt="placeholder 960" class="img-responsive" >
</div>
<div class="container">
<button class="btn btn-primary">Teacher</button>
<button class="btn btn-success">Student</button>
<button class="btn btn-warning">Administrator</button>
</div>
</div>
これは私のCSSコードです。
.img-responsive{
width:100% !important;
border-radius:0 0 5px 5px !important;
}
私はこの時点で固執しています。
のためにそれをやった:0自動? –