I've been trying to center an image horizontally, but everything I've tried hasn't been working. I need this image to be at the center of the div no matter the screen size, so it can appear centered on PC screens and phones as well ( it's for a project). If anybody can help me, I'd greatly appreciate it.
HTML code:
<div class = "main">
<img src = "kidme.jpg" alt ="Me!" >
</div>
CSS code :
.main {
background-color: #36454F;
width:100%;
height:345px;
}
img {
height:326px;
width:380px;
position: absolute;
margin-top: 20px;
}