导致垂直滚动条出现的原因是什么? http://codepen.io/anon/pen/QGByOQ?editors=1100
根据我的建议,.container
100%
身高body
,身体继承html
,html
是viewport
的100%,因此,每个.chart
应该完全适合,因为它的高度是.container
的一半。然而,出现了y滚动条。这背后的行为是什么?
HTML:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<div class="container">
<div class="chart1"></div>
<div class="chart1"></div>
<div class="chart1"></div>
<div class="chart1"></div>
</div>
</body>
</html>
的CSS:
.container {
width: 100%;
height: 100%;
border: 5px dashed black;
box-sizing: border-box;
font-size: 0;
overflow: auto;
}
html, body {
height: 100%;
}
body {
margin: 0;
}
.chart1 {
display: inline-block;
width: 50%;
height: 50%;
border: 1px solid red;
box-sizing: border-box;
}
答案 0 :(得分:2)
这是由于容器的红色边框。使用CSS calc()
函数,例如:
.chart1 {
height: calc(100% - 1px); /* 1px for the extra border */
}
请看下面的代码段:
.container {
width: 100%;
height: 100%;
border: 5px dashed black;
box-sizing: border-box;
font-size: 0;
overflow: auto;
}
html, body {
height: 100%;
}
body {
margin: 0;
}
.chart1 {
display: inline-block;
width: 50%;
height: calc(50% - 1px);
border: 1px solid red;
box-sizing: border-box;
}
&#13;
<div class="container">
<div class="chart1"></div>
<div class="chart1"></div>
<div class="chart1"></div>
<div class="chart1"></div>
</div>
&#13;
希望这有帮助!