coure2011
coure2011

Reputation: 42404

mozilla equivalent for -webkit-gradient

background-image: -webkit-gradient(linear, left top, right top, color-stop(.75, transparent), color-stop(.75, rgba(255,255,255,.1)));

Whats its equivalent in mozilla firefox?

Upvotes: 1

Views: 2764

Answers (3)

John
John

Reputation: 439

Surprisingly, I found this site from microsoft to be the most helpful -

http://ie.microsoft.com/testdrive/graphics/cssgradientbackgroundmaker/default.html

Upvotes: 0

sinelaw
sinelaw

Reputation: 16553

-moz-linear-gradient perhaps? Try:

-moz-linear-gradient(left, rgba(0,0,0,0) 75%, white 75%)

This may also help: http://www.broken-links.com/tests/gradients/

Upvotes: 5

mylesagray
mylesagray

Reputation: 8869

You should try this out to help you generate cross-browser based gradients:

http://www.colorzilla.com/gradient-editor/

Upvotes: 0

Related Questions