如何讓這兩個溢出?我嘗試了幾乎所有的東西,所以我不知道該從哪裏出發。 div
s標有綠色和橙色。 保持div溢出
#stemplingerclass {
clear: both;
max-width: 100%;
}
#datoid
{
clear: both;
max-width: 100%;
}
<div class="col-sm-10">
<div class="col-md-3 col-sm-3 col-xs-10 text-center" style="background-color: green;" >
<div id="datoid">
</div>
</div>
<div class="col-md-7 col-sm-7 col-xs-10" style="background-color: orange;">
<div id="stemplingerclass">
</div>
</div>
</div>
你試過'overflow-y:hidden;'? 和btw你的代碼片段doesent工作... – weinde
更新你的代碼在小提琴 –
overflow-y:hidden;給我「相同」的結果,它只是使日曆部分可滾動。 –