【发布时间】:2021-05-07 15:00:19
【问题描述】:
我无法删除网页顶部仅包含字母“I”的段落上下的空格。
我已经尝试使用“margin”和“padding”属性删除它,但它没有改变。我也尝试过,对于属性“line-height”,值 1 以便行高与文本的大小完全匹配,并且它也不起作用。
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Came</title>
<link rel="stylesheet" media="screen" href="http://fontlibrary.org/face/kolar" type="text/css"/>
<style>
body{
background-color:black;
color:white;}
.photo{
margin-top:0px;
margin-bottom:0px;
padding-top:0px;
padding-bottom:0px;
border:5px solid white;}
.initial{
font-size:500px;
line-height:1;
padding-top:0px;
padding-bottom:0px;
}
.main{
margin-top:0px;
margin-bottom:0px;}
h1{
font-family:KolarExtraBold;
font-size:20px;
border:solid 3px red;
width:65%;
margin: 0 auto;
margin-bottom:3px;}
</style>
</head>
<body>
<div class="photo">
<p class="initial">I</p>
</div>
<div class="main">
<h1><strong>CSS</strong> The Manual</h1>
</div>
</body>
</html>
【问题讨论】:
标签: html css padding margin line-height