visibility hidden in AngularJs?

后端 未结 7 2172
南笙
南笙 2021-02-03 16:45

ng-show applied display: none

7条回答
  •  伪装坚强ぢ
    2021-02-03 17:26

    You should use ngClass or ngStyle, in your case:

    
    

    And this CSS:

    .button-hidden{
       visibility: hidden;
    }
    

提交回复
热议问题