Thuộc tính chế độ viết được sử dụng để đặt các dòng văn bản được bố trí theo chiều ngang hay chiều dọc. Các giá trị thuộc tính là -
writing-mode: horizontal-tb|vertical-rl|vertical-lr;
Ví dụ
<!DOCTYPE html> <html> <head> <style> p { writing-mode: vertical-rl; } </style> </head> <body> <h1>Demo Heading</h1> <p>This is demo text.</p> </body> </html>
Đầu ra
Ví dụ
Bây giờ chúng ta hãy xem một ví dụ khác -
<!DOCTYPE html> <html> <head> <style> p.demo1 { word-spacing: 1cm; color: blue; writing-mode: vertical-rl; } p.demo2 { word-spacing: 40px; writing-mode: horizontal-tb; } </style> </head> <body> <h1>Demo Heading</h1> <h2>Heading2</h2> <p class="demo1">This is demo text.</p> <h2>Heading2</h2> <p class="demo2">This is demo text.</p> </body> </html>
Đầu ra