Vertically center rotated text with CSS

前端 未结 7 1496
盖世英雄少女心
盖世英雄少女心 2020-12-07 11:56

I have the following HTML:

Centered?

div.

7条回答
  •  死守一世寂寞
    2020-12-07 12:35

    The another option to rotate text 90 degree and center on axis Y is:

    .rotate-centered {
        top: 50%;
        right: 50%;
        position: absolute;
        transform: scale(-1) translate(-50%, 50%);
        writing-mode: vertical-lr;
     }
    
    Text
    

    Example: https://codepen.io/wwwebman/pen/KKwqErL

    But because of bad support in IE/EDGE writing-mode does NOT work there: https://developer.mozilla.org/en-US/docs/Web/CSS/writing-mode

提交回复
热议问题