问题基本上是页面顶部的浅绿色条。我想摆脱它。我不确定这是因为利润率还是其他因素。我知道我的背景颜色是浅绿色,但由于某种原因,h1在页面上太远了。
HTML:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link href="css/style.css" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,700' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Ubuntu+Condensed' rel='stylesheet' type='text/css'>
<title>Portfolio</title>
</head>
<body>
<div class="wrapper">
<div align="center" class="main-title"><h1>Portfolio</h1></div>
</div>
</body>
</html>
CSS:
.main-title {
font-size: 1.25em;
font-family: "Ubuntu Condensed";
background-color: rgb(34, 147, 0);
margin: 0;
}
body {
background: rgba(176, 255, 173, 0.52);
margin: 0;
}
我已经在这里创建了一个JSFiddle来演示我的问题:https://jsfiddle.net/r2vf5qe5/
答案 0 :(得分:1)
在CSS中添加以下内容将解决您的问题。
h1 {
margin: 0;
}
答案 1 :(得分:1)
答案 2 :(得分:0)
转到页面属性并将上边距设置为0(外观HTML),因为默认上边距值为1px。
<body topmargin="0">