Reputation: 23
<div [ngStyle]="{
width:'200px',
height:'200px',
border:'1px solid red'
}"
this is code which i wrote ate post.component.html there is error:Unexpected character "EOF" (
what's wrong?
Upvotes: 0
Views: 46
Reputation: 2339
You are missing </div>
<div [ngStyle]="{ width:'200px', height:'200px', border:'1px solid red' }"></div>
Upvotes: 1