欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

line-height如何继承

程序员文章站 2022-05-05 08:57:35
...

line-height如何继承

如果写具体值 比如 30px; 则继承该值

如果写 2 / 1.5 ,则继承该比例

如果写百分比,如200%,则继承计算出来的值(考点)

如下代码 p 标签的行高是 40px;
20*200%=40px

<style type="text/css">
        body {
            font-size: 20px;
            line-height: 200%;
        }
        p {
            background-color: #ccc;
            font-size: 16px;
        }
    </style>
    
    <body>
    	<p>这是一行文字</p>
	</body>
相关标签: line-height