Lets say I have div with width: 300px and height: 200px I want any image inside this div to be centered both horizont
div
width: 300px
height: 200px
Try this
div{ display: flex; align-items: center; justify-content: center }