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

ควบคุมการไหลและการจัดรูปแบบของข้อความด้วย CSS


ช่องว่าง คุณสมบัติใช้เพื่อควบคุมการไหลและการจัดรูปแบบของข้อความ

ตัวอย่าง

คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้คุณสมบัติ white-space เพื่อควบคุมการไหลของข้อความ:

<html>
   <head>
   </head>
   <body>
      <p style = "white-space:pre;">
         This text has a line break and the white-space pre setting tells the browser to honor
         it just like the HTML pre tag.</p>
   </body>
</html>