這是我的代碼和我的期望。請給出任何好建議。使用浮點數時需要帶div元素的剩餘寬度
.dash-wrapper {
height: 100%;
position: relative;
}
.dash-wrapper > div {
height: 100%;
float: left;
}
.dash-nav{
background-color: #606B79;
max-width:223px;
width: 25%;
}
.dash-content{
width:??????;
}
<div class="dash-wrapper">
<div class="dash-nav">
</div>
<div class="dash-content">
</div>
</div>
我想利用.dash-content
剩餘寬度減少dash-nav
寬度後(這將是25%,但最大寬度爲223px)。所以,如果我把75%的寬度,我在容器中爲大型視口設備獲得額外的空間。對於較小的設備,它會工作我知道。我想在所有視圖端口中使用剩餘寬度。提前致謝。