简体   繁体   English

我如何用 ngstyle 解决问题?

[英]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" (这是我写的代码吃了 post.component.html 有错误:意外字符“EOF”(

what's wrong?怎么了?

You are missing </div>你不见了</div>

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM