Answers for "css text direction"

CSS
1

vertcial text css

p {
  writing-mode: vertical-rl;
  text-orientation: upright;
}
Posted by: Guest on June-18-2020
1

style direction

direction: rtl; //ltr
Posted by: Guest on November-27-2020
0

text direction of an element

p {
  direction: rtl;
  unicode-bidi: bidi-override;
}
Posted by: Guest on November-13-2021

Browse Popular Code Answers by Language