How to Center three Div's inside another Div

前端 未结 3 789
無奈伤痛
無奈伤痛 2021-01-28 08:41

this has been trying my patience for about an hour so I thought I would ask.

I need to have three divs, centered inside another div that is inside another div lol. Here

相关标签:
3条回答
  • 2021-01-28 09:05

    The text-align:center; declaration needs to be on the outermost div, i.e. frontnav in your example.

    0 讨论(0)
  • 2021-01-28 09:07

    div element can only be center by setting margin css property as

    margin: 0px auto;
    
    0 讨论(0)
  • 2021-01-28 09:19

    Change the last rule to:

    .frontboxes {
        margin: 6px auto;
    }
    

    and remove the float: left;s.

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