Answers for "css text from bottom to top"

CSS
0

text flow top to bottom

.vertical-writing
{
  writing-mode: vertical-rl;
  text-orientation: upright;
}
Posted by: Guest on January-09-2021
0

css text bottom to top

.rotated {
        writing-mode: tb-rl;
        transform: rotate(-180deg);
    }
Posted by: Guest on April-17-2022

Browse Popular Code Answers by Language