フッター上部に謎の隙間
フッター上部に謎の隙間ができて困っています。
以下ソースになります。
『HTMLソース』
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame
Remove this if you use the .htaccess -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>サンプルページ</title>
<meta name="description" content="" />
<meta name="author" content="." />
<meta name="viewport" content="width=device-width; initial-scale=1.0" />
<!-- Replace favicon.ico & apple-touch-icon.png in the root of your domain and delete these references -->
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/3.11.0/build/cssreset/cssreset-min.css">
<link rel="stylesheet" type="text/css" href="style.css" />
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script src="http://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<script type="text/javascript">
$(function(){
$(".hide").hide();
$(".btn").click(function(){
$(".hide").next().slideToggle();
});
})
</script>
</head>
<body>
<div id="conteiner">
<header>
<div class="center">
<h1>ヘッダー</h1>
</div>
</header>
<div id="box_001">
<div id="box_002">
<div class="center">
<h2>見出し</h2>
<p class="btn">ボタン</p>
<ul>
<li><img src="A.png" alt="img" width="250" height="250" /></li>
<li><img src="A.png" alt="img" width="250" height="250" /></li>
<li><img src="A.png" alt="img" width="250" height="250" /></li>
<li class="hide"><img src="A.png" alt="img" width="250" height="250" /></li>
<li class="hide"><img src="A.png" alt="img" width="250" height="250" /></li>
<li class="hide"><img src="A.png" alt="img" width="250" height="250" /></li>
</ul>
</div>
</div>
</div>
<footer>
<div id="box_003">
<p>フッター</p>
</div>
</footer>
</div>
</body>
</html>
『CSSソース(style.cssで読み込んでます)』
html,body {
height: 100%;
width: 100%;
}
#conteiner {
width: 100%;
height: 100%;
}
.center {
width: 100%;
max-width: 1040px;
height: auto;
margin: 0 auto;
}
.center:after {
content: ".";
display: block;
height: 0;
font-size:0;
clear: both;
visibility:hidden;
}
header {
width: 100%;
height: 300px;
background: #ff7f50;
}
#box_001 {
background: #4169e1;
}
#box_002 {
background: #4169e1;
}
#box_001 ul {
margin-bottom: 150px;
}
#box_001 ul li {
float: left;
margin: 40px;
}
footer {
width: 100%;
height: 150px;
background: #ff7f50;
}
footer p {
line-height: 150px;
text-align: center;
}
お礼
ご回答有り難うございました。 簡単に治るかと思ったのですが、 やはり無理なようです。 教えていただいたように業者を探します。