css属性选择器 疑惑
<style> .columnNews{background:red} </style> <style> a[style='background:red']{ color:red; } </style>
↑↑↑↑↑ 为什么这样,不起作用.
<style> a[style='background:red']{ color:red; } </style> ... <a href="##" class="columnNews" style='background:red'>我的背景想变成红色</a> ...
↑↑↑↑↑ 但这样,却可以.
是因为属性选择器只支持行内样式?还是我的我获取内嵌样式的方法不对?