其他分享
首页 > 其他分享> > line-height 和 height的区别

line-height 和 height的区别

作者:互联网

含义不同

height使用

<style>
    ul{
        width: 500px;
        font-size: 20px;
        background-color: red;
        height: 50px;
        
    }
    li{
        
    }
</style>
<body>
    <ul>
        <li>文本1</li>
    </ul>
</body>

line-height使用

<style>
    ul{
        width: 500px;
        font-size: 20px;
        background-color: red;
        line-height: 40px;
        
    }
    li{
        
    }
</style>
<body>
    <ul>
        <li>文本1</li>
    </ul>
</body>

height 和 line-height使用

<style>
    ul{
        width: 500px;
        font-size: 20px;
        background-color: red;
        height: 50px;
        
    }
    li{
        line-height: 40px;
    }
</style>
<body>
    <ul>
        <li>文本1</li>
    </ul>
</body>

height 和 line-height 和 font-size不同时候

<style>
    ul{
        width: 500px;
        font-size: 50px;
        background-color: red;
        height: 30px;
        
    }
    li{
        line-height: 40px;
    }
</style>
<body>
    <ul>
        <li>文本1</li>
    </ul>
</body>

标签:区别,高度,height,ul,line,font,size
来源: https://www.cnblogs.com/yk-oct2/p/16572301.html