How do I create a CSS gradient?+
Use the CSS background property with linear-gradient(), radial-gradient(), or conic-gradient(). For example: background: linear-gradient(135deg, #667EEA, #764BA2);
What is the difference between linear and radial gradients?+
Linear gradients transition colors along a straight line (horizontal, vertical, or diagonal). Radial gradients transition colors outward from a center point in a circular or elliptical pattern.
Can I use gradients in Tailwind CSS?+
Yes. Use utility classes like bg-gradient-to-r (direction) with from-[#hex] and to-[#hex]. For this gradient: bg-gradient-to-r from-[#667EEA] to-[#764BA2]
How many colors can a CSS gradient have?+
CSS gradients support unlimited color stops. You can add as many colors as you want by separating them with commas: linear-gradient(to right, #color1, #color2, #color3, ...).