I'm using following website (http://www.colorzilla.com/gradient-editor/) to generate a CSS gradient for the background of my website. In my main CSS file, I put the code like below:
body {
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f77624+0,f9c655+100 */
background: #f77624; /* Old browsers */
background: -moz-linear-gradient(left, #f77624 0%, #f9c655 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(left, #f77624 0%,#f9c655 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right, #f77624 0%,#f9c655 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f77624', endColorstr='#f9c655',GradientType=1 ); /* IE6-9 */
}
When I refresh index.html file, I only see the background color without the gradient. Is there any error in the CSS code above? If it is any help, I am also using the HTML5 Boilerplate.
F5, and see if that helps. If not, maybe try adding a runnable code snippet of the website for us, as to debug it.