Simple CSS Gradient Background
Gradients can add depth and interest to your designs. Here's how to create a simple linear gradient background
.gradient-bg { background: linear-gradient(to right, #ff7e5f, #feb47b); }
This creates a horizontal gradient from a warm orange to a soft peach. You can adjust the colors and direction to suit your needs. For more complex gradients, check out tools like CSS Gradient to generate the code for you.
Gradients can add depth and interest to your designs. Here's how to create a simple linear gradient background
.gradient-bg { background: linear-gradient(to right, #ff7e5f, #feb47b); }
This creates a horizontal gradient from a warm orange to a soft peach. You can adjust the colors and direction to suit your needs. For more complex gradients, check out tools like CSS Gradient to generate the code for you.