- CSS Tutorial
- CSS Introduction
- CSS Syntax
- CSS Comments
- CSS Selectors
- CSS Fonts
- CSS Colors
- CSS Backgrounds
- CSS Box Model
- CSS Borders
- CSS Margins
- CSS Padding
- CSS Text
- CSS Images
- CSS Links
- CSS Lists
- CSS Tables
- CSS Outline
- CSS Icons
- CSS Display
- CSS max-witdh
- CSS Position
- CSS z-index
- CSS Overflow
- CSS Float
- CSS Align
- CSS Opacity
- CSS Navigation Bar
- CSS Dropdowns
- CSS Forms
- CSS Units
- CSS !important
- CSS Specificity
- CSS Combinators
- CSS inline-block
- CSS Hover
- CSS Cursors
- CSS Selectors
- CSS Type Selector
- CSS Class Selector
- CSS ID Selector
- CSS Attribute Selector
- CSS Pseudo-class Selector
- CSS Pseudo-element Selector
- CSS Universal Selector
- CSS Advanced
- CSS Text Formatting
- CSS Gradients
- CSS Shadow
- CSS Rounded Corners
- CSS Text Effects
- CSS 2D Transform
- CSS 3D Transform
- CSS Border Images
- CSS Inherit
- CSS Transitions
- CSS Animations
- CSS Box Sizing
- CSS Tooltip
- CSS Masking
- CSS Pagination
- CSS Styling Images
- CSS object-fit
- CSS object-position
- CSS Buttons
- CSS Multiple Columns
- CSS Variables
- CSS Flexbox
- CSS Grid
- CSS Media Queries
CSS: Masking
In CSS, masking refers to the technique of selectively showing or hiding parts of an element or an image using another element or image as a mask. This allows you to create various visual effects, such as revealing parts of an image based on a shape, gradient, or pattern. Masking in CSS is achieved using the mask property or its variations.
Masking with mask-image
The mask-image property is used to specify an image or SVG element as the mask for an element. The masked element will only be visible where the mask image has non-transparent pixels.
Syntax
.element {
mask-image: url('mask-image.png');
mask-mode: alpha; /* Optional: specifies how the mask is applied (alpha, luminance, luminance-alpha, match-source) */
}
Masking with mask
The mask property is a shorthand for setting various masking properties at once, including mask-image, mask-mode, mask-repeat, mask-position, mask-size, and mask-composite.
Syntax
.element {
mask: url('mask-image.png') alpha repeat-x 0 0 / auto space;
}
Masking with SVG
You can also use SVG elements as masks. This gives you more flexibility and control over the masking effect, allowing you to create complex shapes and gradients as masks.
Example
.element {
mask-image: url('mask.svg');
}
Masking Modes
The mask-mode property defines how the mask image is applied to the element. Common values include:
- alpha: The mask is applied using the alpha channel of the mask image.
- luminance: The mask is applied using the luminance (brightness) values of the mask image.
- luminance-alpha: The mask is applied using both luminance and alpha values.
- match-source: The mask is applied using the same mode as the source image.
Masking with Gradients
You can create gradient masks using CSS gradients. This is useful for creating effects like fading or revealing parts of an element.
Example
.element {
mask-image: linear-gradient(to right, transparent, black);
}
Masking with Browser Support
It's important to note that masking with CSS has varying levels of browser support, especially for advanced features like SVG masks and complex masking modes. Always check compatibility and consider fallback options or polyfills for older browsers if needed.
Conclusion
CSS masking allows you to create visually appealing effects by selectively showing or hiding parts of elements using masks. Whether using images, SVGs, gradients, or other elements as masks, understanding CSS masking techniques can help you achieve creative designs and enhance user experience on the web.