搜索文档
首页
HTML/CSS
JavaScript
服务端开发
Java教程
移动端
数据库
当前位置:
首页
HTML/CSS
CSS 教程
CSS 基础教程
源代码
清空
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Example of CSS text indentation</title> <style> p { text-indent: 100px; } </style> </head> <body> <h1>文字缩进效果</ h1> <p>本段的第一行缩进100px。 播放<code> text-indent </code>属性的值以查看其工作原理。 允许使用负值。</p> </body> </html>
运行结果