The ngStyle
directive allows you to set CSS style on an HTML element conditionally.
<ANY
ng-style="expression">
...
</ANY>
<ANY class="ng-style: expression;"> ... </ANY>
Param | Type | Details |
---|---|---|
ngStyle | expression |
Expression which evals to an object whose keys are CSS style names and values are corresponding values for those CSS keys. Since some CSS style names are not valid keys for an object, they must be quoted. See the 'background-color' style in the example below. |
<input type="button" value="set color" ng-click="myStyle={color:'red'}">
<input type="button" value="set background" ng-click="myStyle={'background-color':'blue'}">
<input type="button" value="clear" ng-click="myStyle={}">
<br/>
<span ng-style="myStyle">Sample Text</span>
<pre>myStyle={{myStyle}}</pre>