How to create gradient background with CSS in Firefox <3.6?

Does anyone know if it is possible to reproduce this effect

background-image: -moz-linear-gradient(top, #666666, #000000);
background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0, #000000),color-stop(1, #666666));

also on ff <3.6? im tryin 'to generate a gradient background without images!

Thanks in advance for any advice.

+3
source share
3 answers

Doesn't look like this: MDC Reference

Presented in Gecko 1.9.2

(Firefox 3.6 / Fennec 1.0)

Scroll down to see how to do this in other browsers. Surprisingly, IE can do this with 5.5 (for example, with a proprietary tag).

+7
source

FF < 3.6 CSS, . SVG , .

+1

https://developer.mozilla.org/en/CSS/-moz-linear-gradient -moz-linear-gradient Firefox 3.6, - , Firefox .

. , Firefox, , , .

CSS, , post.

+1

Source: https://habr.com/ru/post/1746537/


All Articles