How do I create a CSS gradient?+
Use the CSS background property with the gradient function: background: linear-gradient(135deg, #ff6a1a, #7c5cff). This tool generates the correct syntax for you.
What is the difference between linear and radial gradients?+
A linear gradient transitions colours along a straight line at a specified angle. A radial gradient radiates outward from a centre point in a circle or ellipse.
Can I use gradients as borders in CSS?+
Not directly with border-color. Use background-clip and a pseudo-element trick, or use the border-image property: border-image: linear-gradient(...) 1.
How do I make a gradient text effect in CSS?+
Use background: linear-gradient(...) on the element, then apply background-clip: text and -webkit-background-clip: text. Note: gradient text is considered decorative-heavy - use sparingly.