--custom-span-color: #3498db; /* Define the custom color */
}
span {
color: var(--custom-span-color); /* Apply the custom color to all <span> elements */
}
Revision as of 16:37, 8 September 2024
:root{--custom-span-color:#3498db;/* Define the custom color */}span{color:var(--custom-span-color);/* Apply the custom color to all <span> elements */}