DEV Community

Discussion on: CSS can do that?

Collapse
 
elanandkumar profile image
Anand Kumar

Very nice.
Recently i tried mix-blend-mode but due to some strange reason, it did not work on one of my android phone chrome browser. Worked on others. So, the point is to make sure it works for you on supported platforms.

Collapse
 
ananyaneogi profile image
Ananya Neogi

Yes, of course, we should always to check for browser support. But the good thing about CSS is that we can always add fallback styles in cases where our desired css properties are not supported. If a property is not supported CSS won't throw out errors, it will silently cascade to other styles so adding fallback styles works out of the box.

Collapse
 
elanandkumar profile image
Anand Kumar

Completely agree. Thanks