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

CSS white-space คุณสมบัติ


ใช้คุณสมบัติ white-space เพื่อทำงานกับ white-space ภายในองค์ประกอบ:

ตัวอย่าง

<!DOCTYPE html>
<html>
   <head>
      <style>
         p.demo1 {
            white-space: normal;
         }
         p.demo2 {
            white-space: pre;
         }
      </style>
   </head>
   <body>
      <h2>Control white-space</h2>
      <p class = "demo1">
         This is demo text.
         This is demo text.
      </p>
      <p class = "demo2">
         This is demo text.
         This is demo text.
      </p>
   </body>
</html>