Does CSS background-blend-mode property work in SOLOLEARN?
I have been trying to use the CSS background-blend-mode property on SoloLearn, but it is not working and SoloLearn says that it is an "Unknown Property". I think I have what it is needed to use this property well: a background-image and a background-color (black). My intention was to use a value "multiply" on this property, but no value is been recognized by SoloLearn. See down below how I'm using these properties on CCS and let me know what you guys think: .header { color:black; text-shadow:1px 1px 1px white; background-image:url(https://www.tcc.fl.edu/media/divisions/training-group/international-services/Signing_form.jpg); background-size:cover; background-blend-mode: multiply; padding:2px; margin:3px; font-family:"verdana"; text-align:center; font-weight:bold; border-color: rgb(150, 150, 150); border-style:ridge; } Thank you so much!