我有一個html模板,我想將bootstrap集成到它中。我目前在引導列中有兩個圖像。我想保持這兩個圖像對齊並且彼此相鄰,同時在列的中間將它們彼此連接。當我嘗試它時,不是將它們置於中心位置,就是將它們置於彼此之上,而我不想要。我想兩個圖像爲中心,彼此相鄰...這裏是我的代碼:對齊引導列的兩個圖像行內中心
<div class="row justify-content-center">
<div class="col-xl-6">
<img class="welcome-icon-size align-top center-block" src="{% static 'images/untitled-2.png'%}" alt="Generic placeholder image">
<img class="welcome-name-size no-margin-top center-block" src="{% static 'images/untitled-1.png'%}" alt="Generic placeholder image">
</div>
</div>
這裏是CSS:
.no-margin-top {
margin-top: 0px !important;
}
.no-padding {
padding: 0em !important;
}
.welcome-icon-size {
height: 9.55em !important;
}
.welcome-name-size {
height: 14em !important;
}
.welcome_title {
font-size: 1em !important
}
.welcome-center-items {
align-items: center !important;
}
.center-block {
display: block;
margin-left: auto;
margin-right: auto;
}
這裏是我的形象看起來像:
我希望它看起來像以下但集中::
中的圖像在屏幕截圖不居中以上它們對齊到列
可能的重複[如何將兩個圖像並排放入div使用bootstrap?](https://stackoverflow.com/questions/26647890/how-to-place-two-image-side-by-side -into-a-div-using-bootstrap) – Rob