Did you try adding a length to the color stop? for example:
-webkit-gradient( linear, left top, left bottom, color-stop(0.06, rgb(0,21,255)), color-stop(0.32, rgb(255,255,255)) ) -moz-linear-gradient( center top, rgb(0,21,255) 6%, rgb(255,255,255) 32% )
The gradient will start at 6% of the height, transition from blue to white until 32% of the height and then be fully white.
See http://hacks.mozilla.org/2009/11/css-gradients-firefox-36/ for more info on the position property.
More information about formatting options
color stops can take a length measurement.
Did you try adding a length to the color stop? for example:
-webkit-gradient(
linear,
left top,
left bottom,
color-stop(0.06, rgb(0,21,255)),
color-stop(0.32, rgb(255,255,255))
)
-moz-linear-gradient(
center top,
rgb(0,21,255) 6%,
rgb(255,255,255) 32%
)
The gradient will start at 6% of the height, transition from blue to white until 32% of the height and then be fully white.
See http://hacks.mozilla.org/2009/11/css-gradients-firefox-36/ for more info on the position property.