-1

I have this linear gradient for mozilla:

background-image: -moz-linear-gradient(center top, #bbb, #ccc 30%, #ccc 70%, #bbb);

is there a tool that generates this linear gradient but for other browser ? (webkit, IE, opera ecc) ??

Thanks a lot and sorry fory my english :)

Borja
  • 3,359
  • 7
  • 33
  • 66
  • What browsers do you care about that don't support the non-prefixed form? For that matter, why are you using -moz-? Do you have a lot of people using (the ancient) Firefox 15 and earlier? – Quentin Mar 02 '16 at 19:04
  • remove the prefix and then see if you want to support old browsers – G-Cyrillus Mar 02 '16 at 19:05
  • Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it. – Tennyson H Mar 02 '16 at 19:06
  • Yes, there is (e.g. [Gradient CSS Generator from CSSmatic](http://www.cssmatic.com/gradient-generator), found with one quick Google search), but remember that stackoverflow isn't here to recommend programs – LarsW Mar 02 '16 at 19:06
  • @GCyrillus i remove the prefix but doesn't work (i have firefox 44.0.2) – Borja Mar 02 '16 at 19:08
  • without prefix, it can be written:`background-image: linear-gradient(#bbb, #ccc 30%, #ccc 70%, #bbb);` – G-Cyrillus Mar 02 '16 at 20:33

2 Answers2

2

You could this http://www.colorzilla.com/gradient-editor/. This generates gradient for almost all the browsers.

0

There are many of them online that you can quickly find. Here's one:

http://www.cssmatic.com/gradient-generator

For similar questions of this type, there is a brand new service recently launched called Google where you can enter what you're looking for into a search box and it'll find and display relevant results. I typed 'linear gradient css3' for this answer.

ohiodoug
  • 1,493
  • 1
  • 9
  • 12
  • Please don't up vote this -- it was a sarcastic response to a question that shouldn't have been asked. – ohiodoug Mar 02 '16 at 19:13