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

เยื้องบรรทัดแรกของย่อหน้าใน 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>