Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ngStyle #70

Open
deepthan opened this issue Jul 27, 2020 · 0 comments
Open

ngStyle #70

deepthan opened this issue Jul 27, 2020 · 0 comments

Comments

@deepthan
Copy link
Owner

ngStyle

添加变量到ngStyle中

pWidth = '100'
<p [ngStyle]="{'width.px': pWidth}"></p>

根据变量添加不同属性

showP = false
<p [ngStyle]="{'display': showP ? 'block': 'none'}"></p>

花式添加style

ts中直接在组件顶层dom添加style

@Component({
  selector       : 'p-sample',
  host       : {
    '[style.color]' : `'red'`
  }
})

html中添加style

<p [style.color]="'red'"></p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant