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

ตั้งค่าว่าจะแทนที่ข้อความเพื่อรองรับหลายภาษาด้วย CSS . หรือไม่


ใช้คุณสมบัติ unicode-bdi เพื่อกำหนดว่าข้อความควรถูกแทนที่หรือไม่เพื่อรองรับหลายภาษาด้วย CSS

ตัวอย่าง

<!DOCTYPE html>
<html>
   <head>
      <style>
         p.demo1 {
            direction: rtl;
            unicode-bidi: bidi-override;
         }
         p.demo2 {
            direction: rtl;
            unicode-bidi: isolate;
         }
      </style>
   </head>
   <body>
      <h1>The unicode-bidi Property</h1>
      <p>This is demo text.</p>
      <p class = "demo1">This is demo text</p>
      <p class = "demo2">This is demo text</p>
   </body>
</html>