position div center horizontal and vertical

后端 未结 2 527
温柔的废话
温柔的废话 2020-12-22 05:28

i would like to center a popup div how can i do that browser friendly????

this is the original a bit to the left.

2条回答
  •  滥情空心
    2020-12-22 06:12

    Not sure I understand which part you want to center, but assuming the whole thing:

    .popLayerWrapper {
       position: absolute;
       width: 40%;  /* could be anything */
       left: 50%;
       margin-left: -20%;  /* half of width */
       height: 40%;    /* again, could be anything */
       top: 50%;
       margin-top: -20%;  /* half of height */
    }
    

提交回复
热议问题