As I work on my website, I am experimenting with a background that transitions from one color to another. The colors I am using are #87a0b4 and #6a86a0.
I have encountered two issues:
Firstly, the transition is not displaying correctly on Internet Explorer or Firefox.
Secondly, I am looking to adjust the starting point of the gradient to around 80% down the page.
#grad {
background: -webkit-linear-gradient(#87a0b4, #6a86a0); /* For Safari 5.1 to 6.0 */
background: -o-linear-gradient(#87a0b4, #6a86a0)); /* For Opera 11.1 to 12.0 */
background: -moz-linear-gradient(#87a0b4, #6a86a0)); /* For Firefox 3.6 to 15 */
background: linear-gradient(#87a0b4, #6a86a0)); /* Standard syntax */
}