我用的div+css布局,想實現左側固定長度,右側填滿。雖然是實現了,但是右側溢出,因為顯示左側,使用margin-left導致右側出去了那么多。怎么處理?。?
1 回答

吃雞游戲
TA貢獻1829條經驗 獲得超7個贊
.stage{
width: 100%;
height: 280px;
display: flex;
flex-direction: row;
flex-flow: nowrap;
}
.left{
width: 450px;
height: 100%;
background: orange;
}
.center{
width: calc(100% - 450px + 15px);
margin-left: 15px;
height: 100%;
background: grey;
}
試一下這樣布局吧 應該是你想要的結果
- 1 回答
- 0 關注
- 659 瀏覽
相關問題推薦
添加回答
舉報
0/150
提交
取消