我希望白色内容直接与徽标相对,但是尽管我将margin-top设置为0,但它们之间仍出现空白行。
<body background="$request.getContextPath()/images/background.gif">
<img src="$request.getContextPath()/images/logo.gif" />
<div class="content">
这是CSS
img {
margin-top:0;
}
.content {
background: white;
margin-left:5%;
width: 779px;
overflow: hidden;
height: 273px;
border:0;
margin-top:0;
}
body {
font-family:Verdana, Geneva, sans-serif;
font-size: 12px;
line-height: 1.5;
border:0;
margin-top:0;
}
最佳答案
尝试像这样的负利润
.content {
margin-top: -10px;
}
关于html - 如何删除出现在徽标和内容之间的多余行,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42658930/