发布网友 发布时间:2022-04-22 11:31
共10个回答
热心网友 时间:2022-04-07 08:41
div层里面文字的首行缩 用text-indent: 2em这个就行。你知道的,第二行没有缩进因为哪个不是一段的起始行。设置文字上下间的距离 给他一个行高就行了。line-height:20px;
热心网友 时间:2022-04-07 09:59
设置CSS属性text-indent:2em 代码如下:
<div style="text-indent:2em; width:300px;">全球最大的中文搜索引擎、致力于让网民更便捷地获取信息,找到所求。百度超过千亿的中文网页数据库,可以瞬间找到相关的搜索结果。</div>
热心网友 时间:2022-04-07 11:34
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<style type="text/css">
.big { text-indent:100px;}
</style>
</head>
<body>
<div class="big">
aaaaaaaaaaaaaaaaaa
</div>
</body>
</html>
这个意思??
热心网友 时间:2022-04-07 13:25
text-indent 好像是这个,好久没自己写代码了。
热心网友 时间:2022-04-07 15:33
style:"text-indent:2em;"
首行缩进2字符。
热心网友 时间:2022-04-07 17:58
首行缩进代码 p{text-indent:2em;}
热心网友 时间:2022-04-07 20:39
设置css
.div1{ text-indent:35px}
热心网友 时间:2022-04-07 23:37
text-indent:2em;首字缩进两个汉字字符。
热心网友 时间:2022-04-08 02:52
text-indent:2em;(em是个单位,表示两个字体)
热心网友 时间:2022-04-08 06:23
style=“ text-indent:2em;”