发现一个怪事,一个 css 文件里不管写什么,都不起作用,甚至加了!important
也不起作用。而我确实在 chrome 的source
里能找到这个文件。
能提供点思路么?
在 index.html 里加入了这个 css 文件:
<link href="src/css/style.css" rel="stylesheet">
这个文件的内容:
body {
background-color: #aa1 !important;
}
webpack 的配置:
test: /\.css$/,
loader: 'style-loader!css-loader',
exclude: [
path.resolve(__dirname, 'node_modules'),
],
楼主确定加了
rel="stylesheet"
?