所以我一直试图删除我的div元素和iframe之间的空格,一小时没有成功。任何帮助将不胜感激。这是我到目前为止所做的。
的CSS:
h1 {
text-align: center;
color: white;
}
.d1 {
border-style: none;
background-color: blue;
}
iframe {
width: 50%;
height: 50%;
display: block;
margin: 0;
}
这是我的HTML:我试图去除顶部和底部的2个div元素之间的空白。
<!DOCTYPE html>
<!-- By Christian Soto -->
<html>
<head>
<meta charset="UTF-8">
<title>Event Driven JS</title>
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
<div class="d1">
<h1>Using JavaScript to Change the HTML</h1>
</div>
<iframe id="section">
<!-- Will be loading different html pages into here -->
</iframe>
<div class="d1">
<h1>Christian Soto</h1>
</div>
</body>
</html>
答案 0 :(得分:2)
您需要从<h1>
标记中删除默认边距,
所有 HTML headings 都有默认的边距样式。
h1{
text-align: center;
color: white;
margin: 0;
}