Absolute center a fluid div

前端 未结 3 1696
独厮守ぢ
独厮守ぢ 2021-01-23 07:45

Good day.

I know that if you want to absolute center a div, you do this:

blahblah
3条回答
  •  独厮守ぢ
    2021-01-23 08:11

    This can be done with CSS alone.

    #parent {
      position: absolute;
      max-width: 500px;
      max-height: 500px;
      width: 100%;
      height: 100%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }
    

    See demo https://jsfiddle.net/matharden/8kmvt8qd/

提交回复
热议问题