6
Angular JS에서 CSS 스타일 속성을 동적으로 적용
이것은 간단한 문제이지만 해결책을 찾을 수없는 것 같습니다. 다음 마크 업이 있습니다. <div style="width:20px; height:20px; margin-top:10px; border:solid 1px black; background-color:#ff0000;"></div> 범위에 바인딩 할 배경색이 필요하므로 이것을 시도했습니다. <div style="{width:20px; height:20px; margin-top:10px; border:solid 1px black; background-color:{{data.backgroundCol}};}"></div> 작동하지 않아서 몇 가지 조사를 수행 한 결과를 찾았 ng-style지만 작동하지 않았기 때문에 동적 부분을 …