我正在设计一个在社交网站上使用的布局。该网站允许CSS / HTML元素。在我的设计中,我的两个堆叠div之间存在间隙。我的代码没有空隙,所以我无法理解它为什么存在。
以下是截图:标题图片和菜单之间的黑色空间是差距。
这是我的HTML:
<!DOCTYPE HTML>
<head>
<link rel="stylesheet" href="vfErin.css">
</head>
<html>
<body>
<div id="customProfile">
<div id="customHeader">
<img src="http://assets.jollyrogerpcs.com/vampirefreaks/axel/cover.png" width="100%">
</div>
<div id="customMenu">
<a href="#">VF Home</a>
<a href="#">Gallery</a>
<a href="#">Journal</a>
<a href="#">Add Me</a>
<a href="#">Rate & Comment</a>
</div>
</div>
</body>
</html>
我的CSS:
/*
#67C8FF neon-blue
#83F52C neon-green
*/
* {
padding: 0;
margin: 0;
text-decoration: none;
border: none;
outline: none;
list-style: none;
transition: all 0.5s;
}
body {
background-color: #000;
text-align: center;
}
#customProfile {
width: 900px;
margin: 0 auto;
text-align: left;
border-left: 1px solid #67C8FF;
border-right: 1px solid #67C8FF;
}
#customMenu {
width: 900px;
font-size: 0pt;
}
#customMenu a:link, #customMenu a:visited {
display: inline-block;
width: 20%;
text-align: center;
background-color: #67c8ff;
font-size: 14pt;
height: 30px;
line-height: 30px;
}
答案 0 :(得分:2)
告诉图像是块级元素,如下所示:
img {
display: block;
}
更好的是,给它一个类,这样你就不会在页面上设置所有图像的样式。因为图像是一个内嵌块元素,所以它受行高限制,这就是我认为这里发生的事情。