Here is the code I am using for displaying my image:
return <div class="imgContainer"><img src={broomAndText} alt="broomAndText" /></div>
In my css file, I have included the following styling:
.imgContainer {
text-align: center;
}
However, when viewing the page on mobile and desktop devices, the image is not centered as expected and instead appears off to the right. How can I correct this alignment issue?