how to center an inline div using css?

后端 未结 5 1163
面向向阳花
面向向阳花 2020-12-17 09:03

How can I center an inline div (not its content) using css?

VERY IMPORTANT: the width of the div is unknown (I can not specify it)

5条回答
  •  南方客
    南方客 (楼主)
    2020-12-17 09:51

    you can probably get away with display:inline-block and text-align:center; on the parent element if you want it it to be "blocky". also you'll probably need to give it a vertical-align:top

提交回复
热议问题