我是ReactJS的新手! 我在谷歌做了一些关于如何在index.html中改变主体的背景颜色的研究,但是没有任何效果。 我曾尝试在标记中使用
标记,也曾尝试在
public
文件夹中创建新的style.css
文件,并将其链接到index.html
,但它没有更改任何内容!
下面是我如何将style.css链接到index.html
请救命! 事前感谢
更新! 当我刷新页面时,背景颜色确实发生了变化,但仅仅在0.001秒后,它就回到了白色。
对于内联CSS,可以尝试:
<body style="background-color:yellow;">
<h1>Products</h1>
<p>We have developed more than 10 products till now.</p>
</body>
Inside the index.css
body {
background-color: 'blue';
}