writing-mode property
Specifies the intrinsic writing direction of the element's content.
In Western languages, the common text order is left-to-right, top-to-bottom, but some Asian writings need to render text top-to-bottom, right-to-left.
With this property, you can switch between these modes.
JavaScript page for this property: writingMode. You can find other example(s) there. |
Possible values:
One of the following values:
Content flows from bottom to top, and right to left. | |||||||
Default. Content flows from left to right, and top to bottom. | |||||||
Default. Content flows from right to left, and top to bottom. | |||||||
Content flows from top to bottom, and right to left. |
Default: lr-tb.
Example HTML code 1:
This example illustrates the use of the writing-mode property:
|
||||
<head> <style> .example { writing-mode: tb-rl; } </style> </head> <body> <a class="example"> writing mode </a> </body> |
||||
|
||||
Did you find this example helpful?
|
Supported by tags:
a, abbr, acronym, address, b, baseFont, bdo, big, blockQuote, body, button, caption, center, cite, code, dd, del, dfn, dir, div, dl, dt, em, fieldSet, font, form, H1, H2, H3, H4, H5, H6, html, i, input:button, input:file, input:password, input:reset, input:submit, input:text, ins, isIndex, kbd, label, legend, li, listing, marquee, menu, nobr, ol, p, pre, q, rt, ruby, s, samp, select, small, span, strike, strong, sub, sup, table, tBody, td, textArea, tFoot, th, tHead, tt, u, ul, var, xmp
Related pages:
External links:
User Contributed Comments