Home >Web Front-end >CSS Tutorial >How Can I Apply Multiple Background Colors to a Div Element Using CSS3?
CSS3 offers a powerful tool for customizing backgrounds, including the ability to apply multiple background images. However, what if you want to specify multiple background colors instead of images?
Consider the following scenario: you have a
Initially, you might attempt to achieve this by loading a gray-colored image as the background. However, there's a more efficient way:
div#content { background: linear-gradient(to right, #f0f0f0 30%, #fff 70%); background-size: 100% 100%; }
In this example, we utilize a linear gradient. It specifies a transition from gray (#f0f0f0) on the left side (30%) to white (#fff) on the right side (70%). The background-size ensures the gradient covers the entire
This method allows you to specify multiple background colors without the need for additional
The above is the detailed content of How Can I Apply Multiple Background Colors to a Div Element Using CSS3?. For more information, please follow other related articles on the PHP Chinese website!