How can I center something if I don't know ahead of time what the width is?

后端 未结 8 1836
生来不讨喜
生来不讨喜 2021-01-06 08:02

I am trying to center a paragraph tag with some text in it within a div, but I can\'t seem to center it using margin: 0 auto without having to specify a fixed width for the

相关标签:
8条回答
  • 2021-01-06 08:48

    Try this using inline CSS:

    <p style="text-align: center;">Lorem ipsum dolor sit amet</p>
    

    Or using just HTML

    <p align="center">Lorem ipsum dolor sit amet</p>
    
    0 讨论(0)
  • 2021-01-06 08:52

    here a nice workaround for centering a div with no width.

    is tableless and is working in any browser!

    0 讨论(0)
提交回复
热议问题