使用 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>
广告