2011
Display-inline.fr - Générateur de dégradé CSS / CSS
by Krome & 1 otherbackground: -webkit-gradient(
10
linear,
11
left top, left bottom,
12
from(#fafafa),
13
to(#eeeeee)
14
);
15
background: -webkit-linear-gradient(
16
top,
17
#fafafa,
18
#eeeeee
19
);
20
background: -moz-linear-gradient(
21
top,
22
#fafafa,
23
#eeeeee
24
);
25
background: -o-linear-gradient(
26
top,
27
#fafafa,
28
#eeeeee
29
);
30
background: linear-gradient(
31
top,
32
#fafafa,
33
#eeeeee
34
);
2008
CSS Gradient Text - by Web Designer Wall
by Simay & 1 other (via)Note: only this sample has applied IE6 PNG hack
2006
2005
slayeroffice | code | cross-browser gradient backgrounds without images
by fastclemmy & 1 otherThis experiment allows for gradient backgrounds on elements by defining a six character hex value for the start and end color as part of the class attribute. No background-images are required.
1
(5 marks)