CSS: How To Center Your Images

If you have a paragraph(<p>) or a <div> with only images, it’s very easy to center them, just set the ‘text-align’ to ‘center’:
p{ text-align: center }
What if there is other content in the paragraph, like text, and you don’t want it to be centered. Well, one way to do this, is to add a container, [...]