18 lines
322 B
CSS
Executable File
18 lines
322 B
CSS
Executable File
/*****************************************/
|
|
/* Right-to-left language support
|
|
* https://codex.wordpress.org/Right-to-Left_Language_Support
|
|
/*****************************************/
|
|
body {
|
|
direction: rtl;
|
|
unicode-bidi: embed;
|
|
}
|
|
|
|
th {
|
|
text-align: right;
|
|
}
|
|
|
|
.screen-reader-text:focus {
|
|
left: auto;
|
|
right: 5px;
|
|
}
|