Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
Make any particular color transparent with CSS Filters
To make any particular color transparent, use Chroma Filter. You can use it with scrollbars also.
The following parameter can be used in this filter
| Parameter |
Description |
|---|---|
| Color |
The color that you'd like to be transparent. |
Implementing the CSS Chroma Filter −
<html> <head> </head> <body> <img src="/images/css.gif" alt="CSS Logo" style="Filter: Chroma(Color = #FFFFFF)"> <p>Text Example:</p> <div style="width: 580; height: 50; font-size: 30pt; font-family: Arial Black; color: #3300FF; Filter: Chroma(Color = #3300FF)">CSS Tutorials</div> </body> </html>
Advertisements
