Answers for "flex box writing sideways text top to bottom"

CSS
0

flex box writing sideways text top to bottom

.outer{
  writing-mode: tb-rl;
  display:flex;
  align-items:center;
  justify-content: flex-end;
}
.inner{
  transform: rotate(180deg);
  transition: transform 1s ease-in-out;
}
Posted by: Guest on February-11-2021

Browse Popular Code Answers by Language