私は現時点でヘッダー、垂直ナビ、コンテンツボックスを備えたシンプルなウェブサイトを構築していますが、私はちょっとしたことで失敗しています。 HTML構造ウェブサイトが応答しません
<html>
<head>
<title>Website</title>
<link href="style.css" type="text/css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="header"></div>
<div class="nav_content_container">
<div class="nav"></div>
<div class="content"></div>
<div class="floatkiller"></div>
</div>
</div>
</body>
</html>
を構築し、それにいくつかのCSSを与えた後
body {
height: 100%;
width: 100%;
margin: 0px;
padding: 0px;
background-color: lightgray;
}
.container {
height: 100%;
width: 77%;
margin: 0px auto;
background-color: white;
border: 3px solid black;
}
.header {
height: 20%;
width: 100%;
background-color: yellowgreen;
border-bottom: 3px solid black;
}
.nav_content_container {
height: 80%;
width: 100%;
background-color: azure;
}
.nav {
height: 100%;
width: 20%;
float: left;
background-color: palevioletred;
border-right: 3px solid black;
}
.content {
height: 100%;
width: 80%;
float: left;
background-color: cornflowerblue;
}
.floatkiller {
float: none;
clear: both;
}
私のウェブサイトresponsivをbeeingてに失敗しているか、正確には、自分のサイトのGETは、高さが100%以上だと、私のcontent
ボックス滴nav_content_container
のうち私は国境を与えていない場合、すべてが問題ありませんが、国境を適用した後、私のウェブサイトは壊れています。なぜ国境がすべてを壊しているのですか?