The CSS Gradient Assistent doesn't create a 'default' background property for non-supported browsers. It would be great if the gradient generator adds automatically a default background property with, for example, the first color you selected.
Code: Select all
background: #A40E1B; /* This line isn't created by the gradient assistent */
background-image: -webkit-gradient(linear, top, bottom, color-stop(0, #A40E1B), color-stop(1, #830B15));
background-image: -ms-linear-gradient(top, #A40E1B, #830B15);
background-image: -o-linear-gradient(top, #A40E1B, #830B15);
background-image: -moz-linear-gradient(top, #A40E1B, #830B15);
background-image: -webkit-linear-gradient(top, #A40E1B, #830B15);
background-image: linear-gradient(to bottom, #A40E1B, #830B15);