Vertically center rotated text with CSS

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

I have the following HTML:

Centered?

div.

7条回答
  •  伪装坚强ぢ
    2020-12-07 12:52

    Can you add margin: 0 auto; to your "rotate" class to center the text.

    .rotate {
      -webkit-transform: rotate(-90deg);
      -ff-transform: rotate(-90deg);
      transform: rotate(-90deg);
      width: 16px;  /* transform: rotate() does not rotate the bounding box. */
      margin: 0 auto;
    }
    

提交回复
热议问题