【发布时间】:2021-11-30 19:40:11
【问题描述】:
我一直在尝试将图像设置为样式组件中公共文件夹中的背景图像。 我试过了
import styled from "styled-components";
import Background from 'process.env.PUBLIC_URL + /images/background.svg'
export const HomeContainer = styled.section`
height: 100vh;
max-width: 100vw;
background-image: url(${Background});
background-repeat: no-repeat;
background-size: cover;
`;
等等
import styled from "styled-components";
export const HomeContainer = styled.section`
height: 100vh;
max-width: 100vw;
background-image: url('process.env.PUBLIC_URL + /images/background.svg');
background-repeat: no-repeat;
background-size: cover;
`;
如何导入? 提前致谢
【问题讨论】:
标签: javascript css reactjs styled-components styling