how to wait before making background color in css code example
Example 1: background color none
element {
background-color: transparent;
}
Example 2: background color in hex css
<style>
div {
background-color: #ffffff; /* add # infront of the hex code */
color: #ffffff; /* add # infront of the hex code */
}
</style>