Why doesn't margin:auto center an image?

前端 未结 8 745
误落风尘
误落风尘 2020-12-04 22:55


Test


    
相关标签:
8条回答
  • 2020-12-04 23:45

    I've found that I must define a specific width for the object or nothing else will make it center. A relative width doesn't work.

    0 讨论(0)
  • 2020-12-04 23:49

    I have found... margin: 0 auto; works for me. But I have also seen it NOT work due to the class being trumped by another specificity that had ... float:left; so watch for that you may need to add ... float:none; this worked in my case as I was coding a media query.

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