You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<p>To serialize a linear gradient, let s initially be the empty string, run these steps, and then return s:</p>
426
426
<ol>
427
427
<li>Append "linear-gradient(" to s.</li>
428
428
<li>
429
429
<ul>
430
-
<li>If the first argument to the gradient function was a keyword, serialize the keyword and append it to s.</li>
430
+
<li>If the first argument to the gradient function was a single keyword, serialize the keyword and append it to s.</li>
431
+
<li>Otherwise, if the first argument to the gradient function was two keywords, serialize both keywords. Append them, separated by a space " ", to s.</li>
431
432
<li>Otherwise, if the first argument to the gradient function was an <angle>, serialize the <angle> and append it to s.</li>
<li>Serialize the <color>, and append it to s.</li>
439
440
<li>If a <length> or <percentage> was specified, append a space " " to s, then serialize the <length> or <percentage> and append it to s.</li>
440
-
<li>Append a comma and a space ", " to s.</li>
441
+
<li>If this is not the final color-stop, append a comma and a space ", " to s.</li>
<li>Serialize the <color>, and append it to s.</li>
473
474
<li>If a <length> or <percentage> was specified, append a space " " to s, then serialize the <length> or <percentage> and append it to s.</li>
474
-
<li>Append a comma and a space ", " to s.</li>
475
+
<li>If this is not the final color-stop, append a comma and a space ", " to s.</li>
<p>Gradient images can be interpolated directly in CSS transitions and animations, smoothly animating from one gradient to another. There are only a few restrictions on what gradients are allowed to be interpolated:</p>
484
485
<ol>
485
486
<li>Both the starting and ending gradient must be of the same type; either both linear gradients or both radial gradients.</li>
0 commit comments