我应该在 React 组件中放置整页背景图像吗?
IT技术
css
reactjs
background-image
2021-05-13 12:47:37
1个回答
如果图像作为您计划渲染的所有组件的背景,只需将其添加到index.html
页面,或者更恰当地说,添加如下内容index.css
并将其导入index.js
body {
margin: 0;
padding: 0;
/** background image */
background-image: url("./img/background.jpg");
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}