背景图像继续在div之外?

时间:2017-01-24 09:51:17

标签: html css html5 css3 css-position

我在左侧有两列用于文本,右侧用于有背景图像。但是背景图像超出了创建滚动的div!我怎么把它放在div里面?

Position: relative
Background-image: url('images/flowers.jpg')
Background-repeat: no repeat
Background-size: cover;
Padding: 200px 0

2 个答案:

答案 0 :(得分:1)

您有错误(没有重复而不是不重复,因此此元素的css失败)

Position: relative
Background-image: url('images/flowers.jpg')
Background-repeat: no-repeat;  
Background-size: cover;
Padding: 200px 0

答案 1 :(得分:0)

我可以在你的CSS上看到错误,那就是

Background-repeat: no repeat;

请在那里做一点修理。

Background-repeat: no-repeat;

请提供您的html结构。