ngif隐藏div内容

时间:2017-03-21 17:07:43

标签: java angular

我有两个div

<div1 ngif (condition)>
   html tags

</div>
<div2>
    html tags
</div>

我想根据条件显示第一个div。但第二个div没有条件。因此,如果我隐藏第一个div第二个div应取代它的位置。任何人都可以帮助我。

1 个答案:

答案 0 :(得分:0)

也许这就是你要找的东西:

<div1 ngIf="condition">
   html tags

</div>
<div2 [class.enlarged]="!condition>
    html tags
</div>