Webpage text vertical style sheet (CSS) method

Source: Internet
Author: User
The text processing attribute of a style sheet has two important attributes: writing-mode and text-align. Let's first look at their usage:
1. writing-mode (set the object writing direction)
Syntax: writing-mode: lr-tb, tb-rl
Parameter: lr-tb: from left to right, from top to bottom
Tb-rl: from top down, from right to left
Example: div {writing-mode: tb-rl ;}
2. text-align (set the alignment of text in the object)
Syntax: text-align: left, right, center, and justify
Parameter: left alignment, right: right alignment
Center: center justify: both ends are aligned
Example: div {text-align: center ;}
Next, let's create an instance with a tight schedule:
<Html>
<Head>
<Title> vertical text </title>
<Style type = "text/css">
<! --
. Tnt {Writing-mode: tb-rl; Text-align: left; font-size: 9pt}
-->
</Style>
</Head>
<Body>
<Div class = "tnt">
Indeed, it is very easy to implement the vertical layout of text processing office software. This problem is rarely discussed in the production of web pages. However, when creating websites with ancient Chinese characteristics, such as text history, calligraphy, scenic spots and historical sites, if you use vertical lines of text, with an antique background and a simple old color, visually unexpected results are achieved.
</Div>
</Body>
</Html>
We can know that the attribute value of "writing-mode" is "tb-rl", and the text is "from top to bottom; the attribute value of "text-align" is "left", and the text is "from right to left. In short, the <div> ...... </Div> contents are arranged in the defined arrangement.
The last note is that "writing-mode" is currently only supported by IE, but not by Nestscape!

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.