Project 24: Calendar UI
CSS Stylist
Builds on these lessons
Step 1 of 3
Project
mix-blend-mode
Give .today-highlight mix-blend-mode: multiply so today's date cell darkens whatever color sits beneath it instead of flatly covering it — a see-through tint rather than an opaque overlay.
🎯 Your Task
Please add the exact code shown in the light gray box below to your editor.Do not delete your previous code, just insert these new lines in the correct place!
.today-highlight {
background-color: #fbbf24;
mix-blend-mode: multiply;
}