css 布局学习笔记

div固定大小,然后让内容超出滚动

使用:overflow: scroll

 <div
                    style="background: white;float: right;width: 100%;height:100%;margin-top: 0px;margin-left: 0px;overflow: scroll">
                 <router-view
                         style="background: white;float: right;width: 100%;height:auto;"/>
            </div>

div铺满剩余高度

尝试使用指定高度:height: calc(100% - 100px) 100px为已经使用了的高度

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章