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

จัดข้อความของย่อหน้าด้วย CSS


ในการจัดแนวข้อความของย่อหน้า ให้ใช้ text-indent ทรัพย์สิน

ตัวอย่าง

ค่าที่เป็นไปได้คือ % หรือตัวเลขที่ระบุช่องว่างเยื้อง คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้งาน a text-index คุณสมบัติด้วย CSS:

<html>
   <head>
   </head>
   <body>
      <p style = "text-indent:2cm;">
         This text will have first line indented by 2cm and this line will remain at
         its actual position this is done by CSS text-indent property.
      </p>
   </body>
</html>