我正在进行一个项目,在几个部分中,我需要放置样式。
Bootstrap运行正常。但是当我添加style.css
时,它似乎并没有赶上。
我已经检查了页面源,并且style.css
文件已正确链接到我的index.html
文件。
这是我的index.html
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="theme-color" content="#000000">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="%PUBLIC_URL%/style.css">
<link rel="manifest" href="%PUBLIC_URL%/manifest.json">
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico">
<title>News Scroller</title>
</head>
答案 0 :(得分:0)
这取决于您的Webpack在编译时会创建什么?您现在如何甚至将自己的react组件放入index.html
中?
似乎这些还不存在。这几件事需要做:
imported
in your App.js
or `Index.js,具体取决于您的命名答案 1 :(得分:0)
在style.css文件中,我写的CSS选择器不正确。
我之前写过这篇文章:.input-group .input-group-sm .col-md-3
无法选择className。
取而代之的是,我在类名和CSS规则之间替换了“”。