수직 정렬의 중앙에 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 자동? –