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

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

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

\"enter

I have an im

6条回答
  •  -上瘾入骨i
    2020-11-29 18:51

    I know I'm late for the party but this simple flex solution worked like a charm for me in case it helps any of you.

    .main-div {
        display: flex;
        align-items: center;
    }
    
    .my-div-name:before, .my-div-name:after {
        /* This content will be vertically centered with the attributes of the main-div */
    }
    

提交回复
热议问题