Vertically centering content of :before/:after pseudo-elements

前端 未结 6 1231
闹比i
闹比i 2020-11-29 17:51

I\'m trying to achieve something similar to this picture:

\"enter

I have an im

6条回答
  •  孤街浪徒
    2020-11-29 18:35

    Using flex box, you should set a fixed width and height in the parent first then

    div::after {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    

提交回复
热议问题