David Anastasiadis
David Anastasiadis

Reputation: 23

how can i solve porblem with ngstyle?

    <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

Answers (1)

Vinay
Vinay

Reputation: 2339

You are missing </div>

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

Upvotes: 1

Related Questions