Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS gradient in google chrome 10.0.612.3 Re: gradient in google chrome 10.0.612.3

#121701
Kitty Giraudel
Participant

You have a problem in your syntax. From http://www.colorzilla.com/gradient-editor/.

background: #060000; /* Old browsers */
background: -moz-linear-gradient(left, #060000 0%, #170c0c 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, right top, color-stop(0%,#060000), color-stop(100%,#170c0c)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(left, #060000 0%,#170c0c 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(left, #060000 0%,#170c0c 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(left, #060000 0%,#170c0c 100%); /* IE10+ */
background: linear-gradient(to right, #060000 0%,#170c0c 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=’#060000′, endColorstr=’#170c0c’,GradientType=1 ); /* IE6-9 */

However please note the -ms line is not useful at all.

Regarding your problem, honestly I didn’t even know we could run an older version of Chrome. At least that old, since we’re currently at v25.