I need to understand how to center and really get a best focus on the logo picture inside the login frame as displayed in the evidence attached in this post.
The Tailwindcss code I am using for this logo is the following:
<img className="object-cover h-20 w-35" src="/sampa.png" alt='logo'/>
I need to center the purple logo but I do not know how to make it as displayed in attached screen in this post. Your help would be very appreciated. Thank you.
2
Answers
You can align your image to the center with the flex and justify-center operations.
You can do this by applying the
mx-auto
classIt calculates the horizontal margins (margin-left and margin-right) automatically, and centers the element within its parent container.