当前位置:Gxlcms > css > csstext-indent属性怎么用

csstext-indent属性怎么用

时间:2021-07-01 10:21:17 帮助过:122人阅读

css text-indent属性用于规定文本块中首行文本的缩进;语法为text-indent : length | % 。该属性允许使用负值;如果使用负值,那么首行会被缩进到左边。

css text-indent属性怎么用?

text-indent 属性规定文本块中首行文本的缩进。

语法:

text-indent : length | % ;

属性值:

length:定义固定的缩进。默认值:0。

%:定义基于父元素宽度的百分比的缩进。

注释:允许使用负值。如果使用负值,那么首行会被缩进到左边。在 CSS 2.1 之前,text-indent 总是继承计算值,而不是声明值。

说明:text-indent 属性用于定义块级元素中第一个内容行的缩进。这最常用于建立一个“标签页”效果。允许指定负值,这会产生一种“悬挂缩进”的效果。

css text-indent属性 示例

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style type="text/css">
div {
width: 400px;
border: 1px solid #000;
padding: 10px;
text-indent: 1cm
}
</style>
</head>
<body>
<div>
Gxl网
Gxl网
Gxl网
Gxl网
Gxl网
Gxl网
Gxl网
Gxl网
Gxl网
Gxl网
</div>
</body>
</html>

效果图:

1.jpg

以上就是css text-indent属性怎么用的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行