The correct linear-gradient syntax is:
linear-gradient( [ <angle> | to <side-or-corner> ,]? <color-stop> [, <color-stop>]+ ) \---------------------------------/ \----------------------------/ Definition of the gradient line List of color stops where <side-or-corner> = [left | right] || [top | bottom] and <color-stop> = <color> [ <percentage> | <length> ]?
.footer { margin-top: 20px; background-image: linear-gradient(90deg, #4F364C, #FFFFFF); }
<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" rel="stylesheet" /> <footer id="footer" class="footer"> <div class="row row-footer"> <div class="col-xs-6 text-left left"> <small>© 2015 newbiecom</small> </div> <div class="col-xs-6 text-right"> <small>Support: Bootstrap Fontawesome</small> </div> </div> </footer>
source share