Quote:
Originally Posted by rogue_ronin
Try this:
Code:
img {
display: block;
margin-left: auto;
margin-right: auto }
With this, you shouldn't have to put the images into paragraph tags.
|
That results in invalid (X)HTML, though - IMG is an inline element, it can't exist outside a block element. A standard-conforming reader should refuse to render it.