Angular の ng 属性に基づいて要素のスタイルを設定するのは悪い習慣ですか? なぜですか、そうでないのですか?あなたの答えを説明してください。
例:
<!-- HTML -->
<ul ng-controller="todoCtrl">
<li></li>
...
</ul>
/* CSS */
[ng-controller="todoCtrl"] {
list-style: none;
}
Angular の ng 属性に基づいて要素のスタイルを設定するのは悪い習慣ですか? なぜですか、そうでないのですか?あなたの答えを説明してください。
例:
<!-- HTML -->
<ul ng-controller="todoCtrl">
<li></li>
...
</ul>
/* CSS */
[ng-controller="todoCtrl"] {
list-style: none;
}