Search code examples
angularjsng-styleangularjs-ng-style

ngStyle more properties


I want to have more properties in ng-style but it won't work.

This is my code line:

<h3 ng-style="{color: titleColor; font-size: titleSize;}">Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</h3>

If I only have the {color: titleColor} then it works perfectly.

Help me to get the font-size in there aswell


Solution

  • This should work:

    <h3 ng-style="{'color': titleColor, 'font-size': titleSize}">Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</h3>