スタイル要素内で角度のある js バインディングを使用しようとしています。
a:hover
またはなどのcssを動的に設定できるようにa:active
例:
$scope.a = {hover: {backgroundColor:#0BF, display: block}};
<style>
a:hover {
background-color: {{a.hover.backgroundColor }};
display: {{a.hover.display }};
}
</style>