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

后端 未结 8 1837
生来不讨喜
生来不讨喜 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:34

    I think the best method is to contain the element in a block level element and do:

    .innerElement {margin:0 auto}
    

    Given they are both block level elements that don't have the float parameter, it should work great!

提交回复
热议问题