使用 CSS 对齐段落文本
要对齐段落文本,请使用*文本文档-缩进*属性。
示例
可能的值是 % 或指定缩进空间的数字。你可以尝试运行以下代码,用 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>
广告