Horizontally and vertically center a pre tag without the use of tables?

后端 未结 3 1893
天命终不由人
天命终不由人 2020-12-20 04:12

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

3条回答
  •  眼角桃花
    2020-12-20 04:54

    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 )

提交回复
热议问题