Is it possible to get my text oriented vertically to the right with CSS, like on the image below ?
I tried the way below, but without being able to reverse
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); }
dimanche