使用 CSS 设置段落的文本缩进
text-indent 属性用于缩进段落文本。可能的值有 % 或指定缩进大小的数字。
示例
您可以尝试运行以下代码,在 CSS 中实现 text-indent 属性
<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>
广告