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

ตั้งค่าเครื่องหมายคำพูดด้วย CSS


ใช้ คำพูด คุณสมบัติเพื่อกำหนดเครื่องหมายคำพูด คุณสามารถลองเรียกใช้รหัสต่อไปนี้เพื่อใช้คุณสมบัติเครื่องหมายคำพูด

ตัวอย่าง

<!DOCTYPE html>
<html>
   <head>
      <style>
         #demo {
            quotes: "'" "'";
         }
      </style>
   </head>
   <body>
      <p>
         <q id = "demo">
         This is demo text surrounded by quotes.
         </q>
      </p>
   </body>
</html>