mirror of
https://github.com/swc-project/swc.git
synced 2024-12-24 22:22:34 +03:00
55 lines
818 B
CSS
55 lines
818 B
CSS
|
.one {
|
||
|
writing-mode: horizontal-tb;
|
||
|
}
|
||
|
.two {
|
||
|
writing-mode: vertical-rl;
|
||
|
}
|
||
|
.three {
|
||
|
writing-mode: vertical-lr;
|
||
|
}
|
||
|
.rtl-vertical-rl {
|
||
|
writing-mode: vertical-rl;
|
||
|
direction: rtl;
|
||
|
}
|
||
|
.rtl-vertical-lr {
|
||
|
writing-mode: vertical-lr;
|
||
|
direction: rtl;
|
||
|
}
|
||
|
.rtl-horizontal-tb {
|
||
|
writing-mode: horizontal-tb;
|
||
|
direction: rtl;
|
||
|
}
|
||
|
.rtl-horizontal-tb-override-direction {
|
||
|
writing-mode: horizontal-tb;
|
||
|
direction: rtl;
|
||
|
direction: ltr;
|
||
|
}
|
||
|
.class {
|
||
|
writing-mode: none;
|
||
|
}
|
||
|
.class {
|
||
|
writing-mode: vertical-lr;
|
||
|
}
|
||
|
.class {
|
||
|
writing-mode: vertical-rl;
|
||
|
}
|
||
|
.class {
|
||
|
writing-mode: horizontal-tb;
|
||
|
}
|
||
|
.class {
|
||
|
writing-mode: sideways-rl;
|
||
|
}
|
||
|
.class {
|
||
|
writing-mode: sideways-lr;
|
||
|
}
|
||
|
@viewport{
|
||
|
writing-mode: horizontal-tb;
|
||
|
direction: rtl;
|
||
|
}
|
||
|
@keyframes test {
|
||
|
100% {
|
||
|
writing-mode: horizontal-tb;
|
||
|
direction: rtl;
|
||
|
}
|
||
|
}
|