Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
771 views
in Technique[技术] by (71.8m points)

css 背景图问题(react)

bg_web_home_qualification.png

上面是我的背景图,我需要他显示在宽100%高331pt的div中,可是实际的效果却是这样子(下图)

image

我的代码是

``

  <div className="qualification" style={{ backgroundImage: `url(${bg_url})`, backgroundSize: '100%,100%'}}>
                   
   </div>
   
   
   
.qualification{
   width: 100%;
   height: 331.35pt;
  }

``

请教下各位大神是哪儿出错了!感激不尽!


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
backgroundSize: '100% 100%'

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...