Center inline-block div in parent while ignoring floating elements

后端 未结 2 1152
小鲜肉
小鲜肉 2021-02-01 15:31

I am trying to center an inline div in its parent. The parent element also has a child div that floats to the right. Because of the right aligned

2条回答
  •  伪装坚强ぢ
    2021-02-01 16:02

    set the right div css

    position:absolute;
    right:0;
    

    relative to the parent div

    #parent {
    position:relative;
    }
    

提交回复
热议问题