I would like to align an image in a <div>
, without using any IDs. All of the solutions I've seen have used IDs or classes. I don't want to use those.
CSS
div {
text-align: left;
}
div img{
//Tried many things but no luck
}
HTML
<div>
<img src="dd.png" />
</div>
How can I center all the images in a div?