{
text-indent:
2em}自然,如果缩进两个字符(即:一个汉字),就可以这么写:123p
{
text-indent:
1em}希望对你有帮助,如有疑问,请追问。望采纳~~
css中设置首行缩进2字符的方法是用text-indent属性来指定,一般两个字符换算成长度就是0.8cm,所以写法如下:
text-indent: 0.8cm
完整例子如下:
<html>
<head>
<style type="text/css">
p {text-indent: 0.8cm}
</style>
</head>
<body>
<p>
这是段落中的一些文本。
这是段落中的一些文本。
这是段落中的一些文本。
这是段落中的一些文本。
这是段落中的一些文本。
这是段落中的一些文本。
这是段落中的一些文本。
</p>
</body>
</html>
运行结果: