我正在尝试使用div
实现设计,但无法将其设置为正确的大小。这是一个plunk。
Master.html
<body ng-app="MyApp" ng-controller='HomeCtrl'>
<div class="row">
<div class="col-sm-12 well">
<h1>Headder</h1>
</div>
</div>
<div class="row">
<div class="col-sm-3 well" style="min-height:100%">
<ul>
<li> <a href="#!/Employee">Employee</a></li>
</ul>
</div>
<div class="col-sm-9 well" style="min-height:100%">
<ng-view></ng-view>
</div>
</div>
</div>
</body>