CSS 背景不会拉伸 100%

CSS Background will not stretch 100%

我在整个网站上使用 CSS 渐变背景 - 我无法让 'Contact' 部分的背景适合整个页面。好像两边都有边距,但 css.

中没有指定
.main-section.contact{
padding:85px 0;
}

.main-section.contact{
background: #ee0979; /* fallback for old browsers */
background: -webkit-linear-gradient(to left, #ee0979 , #ff6a00); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to left, #ee0979 , #ff6a00); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */    
color: #fff;
}

任何建议,非常欢迎...

设法找到问题所在,div 在 html 的部分之外,当我更正它后,背景就如预期的那样。