Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> CSS

คุณสมบัติโหมดการเขียนใน CSS


คุณสมบัติโหมดการเขียนใช้เพื่อกำหนดว่าจะวางบรรทัดข้อความในแนวนอนหรือแนวตั้ง ค่าคุณสมบัติคือ −

writing-mode: horizontal-tb|vertical-rl|vertical-lr;

ตัวอย่าง

<!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>

ผลลัพธ์

คุณสมบัติโหมดการเขียนใน CSS

ตัวอย่าง

เรามาดูตัวอย่างอื่นกัน −

<!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>

ผลลัพธ์

คุณสมบัติโหมดการเขียนใน CSS