I am struggling to center an image using only Bootstrap's CSS-classes. I already tried several things. One was adding Bootstrap CSS-class mx-auto to the img element, but it does nothing.
Help is appreciated.
<div class="container">
    <div class="row">
        <div class="col-4 mx-auto">
            <img class=""...> <!-- center this image within the column -->
            <form...>
            <p...>
            <p...>
            <p...>                
        </div>
    </div>
</div>
 
     
     
     
    