
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Set Mask Effect with CSS
Use the mask effect to turn transparent pixels to a specified color and makes opaque pixels transparent. The following parameter is used in this filter
Sr.No |
Parameter & Description |
---|---|
1 |
Color The color that the transparent areas will become. |
Example
You can try to run the following code to implement mask effect −
<html> <head> </head> <body> <img src="/https/www.tutorialspoint.com/css/images/logo.png" alt="CSS Logo" style="FILTER: Chroma(Color = #000000) Mask(Color=#00FF00)"> <p>Text Example:</p> <div style="width: 357; height: 50; font-size: 30pt; font-family: Arial Black; color: red; Filter: Mask(Color=#00FF00)">CSS Tutorials</div> </body> </html>
Advertisements