我试图从 Windows 8 ListView 控件中的 .win-container 元素(图块)中删除白色背景,以让背景显示出来。当我跟踪样式时,我可以看到白色背景正在应用以下规则......
.win-listview :not(.win-footprint).win-container
所以我为此写了自己的规则......
.win-listview :not(.win-footprint).win-container {
background-color: none;
}
但这没有用。
一位朋友帮我弄清楚我可以使用...
.win-listview :not(.win-footprint).win-container {
background-color: inherit;
}
这很好用。谁能告诉我为什么会这样?