How to center the image in bootstrap 4? [duplicate]
问题 This question already has an answer here: Bootstrap 4 center-block unable to center 3 answers How do I center an image in Bootstrap? 2 answers I am new to Bootstrap 4, earlier in Bootstrap 3 we use class "center-block", now I am not able to find this in new version. 回答1: This can be done with built-in .d-block: <div class="container"> <div class="row"> <div class="col-4"> <img class="mx-auto d-block" src="..."> </div> </div> </div> More info in this link 回答2: Center an inline element has