fix(curriculum): remove invalid size in radial gradient (#65767)

This commit is contained in:
Aditya Singh
2026-02-09 16:16:42 +05:30
committed by GitHub
parent 405a68053a
commit d6db37d423

View File

@@ -59,7 +59,7 @@ background: radial-gradient(shape size at position, color-stop1, color-stop2, ..
On the syntax, the `shape` specifies the shape of gradient which could be `circle` or `ellipse`.
The `size` determines the size of the gradient's ending shape which could be `closest-side`, `closest-corner`, `farthest-side`, `farthest-corner`, `contain`, or `cover`.
The `size` determines the size of the gradient's ending shape which could be `closest-side`, `closest-corner`, `farthest-side` or `farthest-corner`.
`position` determines the position of the gradient's center which could be specified using keywords (such as `center`, `top left`, `bottom right`) or precise values (such as `50% 50%`, `10px 20px`).