Center Align on a Absolutely Positioned Div

后端 未结 9 415
攒了一身酷
攒了一身酷 2020-12-07 14:18
div#thing {
  position: absolute;
  top: 0px;
  z-index: 2;
  margin: 0 auto;
}

text text text with no fixed size, variable fon

9条回答
  •  轮回少年
    2020-12-07 14:44

    To center it both vertically and horizontally do this:

    div#thing {
       position: absolute;
       left: 50%;
       top: 50%;
       transform: translate(-50%, -50%);
    }
    

提交回复
热议问题