Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

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;
}
Source by www.fabiofranchino.com #
 
PREVIOUS NEXT
Tagged: #flex #box #writing #sideways #text #top #bottom
ADD COMMENT
Topic
Name
8+1 =