react-web Posted on 2017-09-08 Edited on 2022-02-16 Disqus: 1.使用svg1.1 image12import backIcon from '../assets/svg/back.svg' <img src={backIcon} /> 1.2 div background1234567import backIcon from '../assets/svg/back.svg' <div style={{ background: 'url(' + backIcon + ') no-repeat 50% 50%', width: width, height: height, ...style}} /> 1.3 div background-image1234567891011121314import backIcon from '../assets/svg/back.svg' <div style={{ backgroundImage: 'url(' + source + ')', width: width, height: height, ...style}} />//这个是渐变色背景<div style={{ backgroundImage: 'linear-gradient(to bottom, #26a9ff 0%, #324dff 100%)', width: width, height: height, ...style}} />