1
我使用Angularjs 1.5和Angular Material 1.0.5創建一個模擬表。我遇到的問題是我無法獲取子組件的「單元格」背景顏色,以填充父項高度的100%。這是我的jsfiddle。如何做到這一點的任何幫助表示讚賞?角度材質:佈局容器填充父項
HTML
<div ng-app="myApp" ng-controller="mainCtrl">
<style>
.table-row{
border-top: 1px solid black;
border-left: 1px solid black;
border-bottom: 1px solid black;
}
.table-cell{
border-right:1px solid black;
}
</style>
<script type="text/ng-template" id="/table">
<div layout='column'>
<div ng-repeat='col in [0,1,2]'>
<div layout="row" class='table-row'>
<div layout-align='center center' ng-repeat='row in [0,1,2]' flex class='table-cell'>
<div ng-if='$odd' flex>
<cell></cell>
</div>
<div ng-if='$even'flex>
TEST</br>
TEST</br>
</div>
</div>
</div>
</div>
</div>
</script>
<script type="text/ng-template" id="/cell">
<div style='background-color:red'>
CELL
</div>
</script>
<h3>
{{name}}
</h3>
<table>
</table>
</div><!--end app-->
非常感謝你,它的工作原理。我認爲這與使用組件成爲問題有關,顯然不是。非常感激! –