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

เยื้องข้อความของย่อหน้าด้วย CSS


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

ตัวอย่าง

คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้งาน text-indent คุณสมบัติใน 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>