Rotating Text Within A Fixed Div

前端 未结 1 1719
天命终不由人
天命终不由人 2021-01-23 08:16

I\'m trying to set up a fixed div to the left of a page, 24px from the left and stretching from top to bottom of the page. Inside this div will be navigation and a title. I\'m t

相关标签:
1条回答
  • 2021-01-23 08:55

    You may also take a look at writing-mode:

     -webkit-writing-mode: vertical-lr;
      /* old Win safari */
      writing-mode: vertical-rl;/*FF*/
      writing-mode: tb-lr;
     /*  writing-mode:sideways-lr;
         or eventually scale(-1,-1) untill sideways-lr is working everywhere */
      transform: scale(-1, -1);
    

    https://jsfiddle.net/xkLc9xuy/20/

    0 讨论(0)
提交回复
热议问题