14.text-indent:首行缩进他的范围在没有右边的时候是无限制的

来源:互联网 发布:淘宝锐博汽车配件官网 编辑:程序博客网 时间:2024/04/28 00:34

text-indent:首行缩进他的范围在没有右边的时候是无限制的;

            而右边框限制了文字或者图片在右边的排列,

                       当文字或者图片到达右边的时候他就会被挤入下一行!

                                   所以设置宽,会排挤;设置高会溢出!

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>asd</title>
    <style type="text/css">
        div{
        margin:100px;
        height: 50px;
        line-height: 50px;
        width: 50px;
        text-indent: 22px;
        }
    </style>
</head>
<body>
    <div>
        大法师大法师大法师大法师大法师大法师大法师大法师大法师大法师大法师大法师大法师大法师大法师大法师大法师
        </br>
        asdaasdasdadas
    </div>
</body>
</html>


0 0