좋아, 그래서 높이를 100 %로 만들었고 레벨을 차단하려고했지만 어떤 이유로 수직 탐색을 전체 높이로 만들 수 없습니다. 글쎄, 정말로 바닥 글에서 멈추고 싶다. 그래서 여기 코드는 다음과 같습니다 나는 UL에 배경 색상을 넣어하지만전체 높이 탐색 막대 이상한 오류
html {
height: 100%;
}
body{
height: 100%;
margin: 0;
font-family: courier;
font-size: 19px;
}
* {
margin: 0;
}
#pagewrap {
min-height: 100%;
margin-bottom: -174px;
}
#pagewrap:after {
content: "";
display: block;
}
#footer, #pagewrap:after {
height: 174px;
}
.sub:last-child {
border: 0px;
}
#footer {
background-color: #00e600;
}
.wrap {
margin: 0 auto;
width: 100%;
display: flex;
align-items: center;
}
.sub {
padding: 12px;
width: 32%;
height: 150px;
background: #00e600;
color: white;
border-right: solid white 1px;
}
.sub:last-child {
border: 0px;
}
#nav {
list-style: none;
font-weight: bold;
margin-bottom: 10px;
width: 10%;
text-align: center;
background-color: brown;
padding-right: 20px;
}
#nav ul {
list-style-type: none;
height: 100%;
margin: 0px;
padding: 0;
overflow: auto;
background-color: brown;
}
#nav li {
margin: 0px;
}
#nav li a {
padding: 10px;
display: block;
text-decoration: none;
font-weight: bold;
color: pink;
background-color: brown;
}
#nav li a:hover {
color: white;
text-shadow: 2px 2px 4px white;
}
<body>
<div id="pagewrap">
<div id="nav">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Works</a></li>
<li><a href="#">About</a></li>
</ul>
</div>
</div>
<!--
<footer id="footer">
</footer>
-->
<div id="footer">
<div class="wrap">
<div class="sub">Lorem Ipsum</div>
<div class="sub">Lorem Ipsum </div>
<div class="sub">Lorem Ipsum </div>
</div>
</div>
</body>
아무도 문제를 발견 할 수 있을까 어떤 이유로 바닥에 없을거야?
jsfiddle는 어디에 있습니까? – DanielGatti
수정되었습니다. OP에 있습니다. 감사합니다 –
https://jsfiddle.net/xjosdhjh/ –