Skip to content

Instantly share code, notes, and snippets.

@NishuGoel
Created November 25, 2018 08:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NishuGoel/94c11bfc45526ef6837cff32c61e3351 to your computer and use it in GitHub Desktop.
Save NishuGoel/94c11bfc45526ef6837cff32c61e3351 to your computer and use it in GitHub Desktop.
@Component({
selector: 'app-root',
template: `<h2>Welcome</h2>
<p [ngStyle]= "{'font-style': style, 'font-size': size}">My Text</p>
`
})
export class Component{
//public show = true;
public style = 'italic';
public size = '30px';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment