This is my first attempt at a gradient background and basically I want it to flow smoothly in my background, but instead it keeps repeating. All of the answers online are using background images which I'm not using, I'm just trying to set a simple background which shifts into a grayish color. Anyway can someone help me figure out how to make the background stop repeating?
CSS3
.body {
width: 100%;
margin: 0 auto;
clear: both;
background: #efefef;
background: -moz-linear-gradient(top, #efefef 0%, #bbbbbb 100%);
background: -webkit-linear-gradient(top, #efefef 0%,#bbbbbb 100%);
background: linear-gradient(to bottom, #efefef 0%, #bbbbbb 100%);
}
and this is what I'm getting the green color at the top is my header, so that's supposed to be that way.