如何使用ngstyle解决问题?

时间:2020-07-01 04:22:58

标签: angular angularjs-ng-style

    <div [ngStyle]="{
  width:'200px',
  height:'200px',
  border:'1px solid red'
}"

这是我吃了post.component.html的代码 错误:意外字符“ EOF”(

怎么了?

1 个答案:

答案 0 :(得分:1)

您缺少</div>

<div [ngStyle]="{ width:'200px', height:'200px', border:'1px solid red' }"></div>