CSS Text orientation : vertically oriented to the right

sideways isn’t supported by all the browser. Instead you can replace it with a scale transformation

div {
  writing-mode: vertical-rl;
  /*text-orientation: sideways;*/
  transform:scale(-1);
}
<div>dimanche</div>

Leave a Comment