尝试设置应用程序的布局,当前的布局工作正常,但问题是,导航栏没有停留在固定位置,其次,如果内容的高度或宽度较大,应通过浏览器滚动条控制。
我试过定位:固定它只是创造更多的混搭
我如何设置我的布局,我可以实现我的愿望layout?
app.component.html
<div id="wrapper">
<div class="al-left" >
<app-sidebar [isExpanded]="sidebarExpanded" (toggleSidebar)="sidebarExpanded = !sidebarExpanded" ></app-sidebar>
</div>
<div class="al-right">
<app-navbar></app-navbar>
<div class="ex-right" id="content">
<router-outlet></router-outlet>
</div>
</div>
</div>
app.component.css
.al-right {flex-grow: 1;}
.al-right{margin-left:0px;
margin-right:0px;}
.ex-right{
margin-left:20px;
margin-right:20px;
}
第一节第一节第一节第一节第一次
更新
1条答案
按热度按时间nzrxty8p1#
您需要:
这是一个片段: