css字行标签谁写写

 1 <body>
 2     <p>我在这里啊</p>
 3 </body>
 4  <style type="text/css">
 5     p{
 6         width:100px;
 7         height:100px;
 8         border:2px solid red;
 9        /* line-height:100px;*/
10        line-height:20%;
11 
12     }
13 </style>
14 p{line-height:100px;}
View Code
<body>
<p>我在这里啊</p>
</body>
<head>
    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
    <title>26.html</title>
    <style type="text/css">
    p{
        width:100px;
        height:100px;
        border:2px solid red;
       /* line-height:550%;*/
    }
</style>

<head>
  p{line-height:100px; }p{line-height:550%;}    
View Code
原文地址:https://www.cnblogs.com/qq547372511/p/5762586.html