Is it possible to horizontally and vertically align a pre tag without tables? I want to vertically and horizontally align some ASCII art on a webpage. While I have already p
the PRE element is a block element by default, so it is the same as centering a div or a paragraph or an h1 or h2 element. You need to use display: table and display: table-cell.
My answer here should help solve your problem... and the fiddle found here: http://jsfiddle.net/dcGZm/13/
The old center a image in a div issue ( image size variable - div size fixed )