图表自动设定父母父高的全高。 Totaly忽略了他的父母身高。
HTML:
<div class="wrapper">
<div class="huj2">
<div class="huj">
bla bla
</div>
<div class="huj">
<div id="ChartContainer2">
//Chart is here
</div>
</div>
</div>
</div>
CSS:
#ChartContainer2 {
width: 100%;
}
.huj {
height: 50%;
position: relative;
}
.huj2 {
height: 100%;
}
.wrapper {
position: fixed;
height: 100%;
width: 100%;
}
答案 0 :(得分:4)
将您的高图表容器高度设为100%,它将起作用。下面是你小提琴的代码解决方案。
#ChartContainer2 {
width: 100%;
height:100% ;
}