我创建了一个flex表,它没有向我显示正确的表,只有第一个表是好的而其他表的宽度不同。 我试图在课堂上安排另一个div,但后来却没有让我参与其中。
<div class="planning-videx">
<div class="name-block" *ngFor="let valueItem of showVI()">
{{valueItem.name}}
<div class="planned">
{{actualCosts | moneyFormat}}
</div>
<div class="planned">
{{plannedCosts | moneyFormat}}
</div>
</div>
</div>
这是CSS
$row-background-color: white;
$row-height: 100%;
$content-height: 45px;
.planning-videx {
@extend .vp-column;
margin-left: 10px;
overflow: auto;
max-height: $row-height;
.name-block {
@extend %common-block;
@include center(false, true);
@include justify-content(space-between);
height: 40px;
margin-left: 1px;
padding-left: 10px;
div.planned {
@extend %flexbox;
@include center(false, true);
border-left: solid thin $border-color;
padding: 0 5px;
width: 150px;
height: 100%;
}
}
.costs-block {
@extend %common-block;
@include center();
@include justify-content(flex-end);
margin-left: 10px;
padding-right: 5px;
width: 100px;
flex-direction: row;
}
}
%common-block {
@extend .vp-row;
background-color: $row-background-color;
margin-top: 1px;
margin-bottom: 1px;
min-height: $content-height;
border: solid thin $border-color;
border-radius: 3px;
}
答案 0 :(得分:0)
我会为金钱类别设置弹性基础或设定宽度,然后在标题上设置'flex:1',以便它可以增长到剩余空间。