Currently working on a website using HTML5 and Bootstrap 4, I encountered an issue while attempting to convert a square image into a circle. Previously in Bootstrap 3, this was achieved simply with the .img-circle
class. However, I seem to be having trouble getting it to work in Bootstrap 4 and haven't found any solutions online yet.
Could it be that Bootstrap has discontinued the img-circle class or is there something wrong with my code?
The code snippet looks like this:
<!-- Placed within tab-content div -->
<div class="col-xs-7">
<img src="img/gallery2.JPG" class="img-circle" alt="HelPic">
</div>
Any assistance would be greatly appreciated :)