Skip to content

Instantly share code, notes, and snippets.

@vanduc1102
Last active August 29, 2015 14:21
Show Gist options
  • Save vanduc1102/b2712d7b3409893269bf to your computer and use it in GitHub Desktop.
Save vanduc1102/b2712d7b3409893269bf to your computer and use it in GitHub Desktop.
Use ngClass in HTML
<!-- with IF condition -->
<div id="application-manage-header" ng-class="isOrangeUser ? 'user-red' : 'user-orange' " >
</div>
<!-- other IF condition -->
<div id="application-manage-body" ng-class="{'hidden-footer': isHideFooter}">
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment