--- title: mask slug: Web/CSS/mask tags: - CSS - CSS Property - Layout - Reference - SVG - Web translation_of: Web/CSS/mask ---
mask
CSS 속성은 아이템이 부분적으로만 보여지게 하거나 혹은 완전히 가려서 보여지지 않게 할 수 있는 기능을 가지고 있습니다. 이 속성은 마스킹 혹은 특정한 점을 기준으로 이미지를 잘라내는 기능을 함께 제공합니다.
mask
는 {{cssxref("mask-border")}}를 초기값으로 재정의합니다. 그러므로 캐스캐이드 이전 단계에 어떠한 마스크 설정을 덮어씌우는 개별 속성아니 여타 다른 속성보다는 mask
를 사용하는 것을 추천합니다. This will ensure that mask-border
has also been reset to allow the new styles to take effect.
{{cssinfo}}
/* 키워드 값 */ mask: none; /* 이미지 값 */ mask: url(mask.png); /* 마스크로 사용되는 이미지 */ mask: url(masks.svg#star); /* 마스크로 사용되는 SVG 그래픽 내 요소 */ /* 조합형 값 */ mask: url(masks.svg#star) luminance; /* 밝기 조절용 마스크로 사용되는 SVG 그래픽 내 요소 */ mask: url(masks.svg#star) 40px 20px; /* 위로부터 40px, 아래부터 20px에 위치하는 마스크로 사용되는 SVG 그래픽 내 요소 */ mask: url(masks.svg#star) 0 0/50px 50px; /* 가로, 세로 각각 50px 사이즈의 마스크로 사용되는 SVG 그래픽 내 요소 */ mask: url(masks.svg#star) repeat-x; /* 수평으로 반복되는 마스크로 사용되는 SVG 그래픽 내 요소 */ mask: url(masks.svg#star) stroke-box; /* Element within SVG graphic used as mask extending to the box enclosed by the stroke */ mask: url(masks.svg#star) exclude; /* Element within SVG graphic used as mask and combined with background using non-overlapping parts */ /* 글로벌 값 */ mask: inherit; mask: initial; mask: unset;
<mask-reference>
<masking-mode>
<position>
<bg-size>
<repeat-style>
<geometry-box>
<geometry-box> | no-clip
<compositing-operator>
.target { mask: url(#c1) luminance; } .anothertarget { mask: url(resources.svg#c1) 50px 30px/10px 10px repeat-x exclude; }
Specification | Status | Comment |
---|---|---|
{{SpecName("CSS Masks", "#the-mask", 'mask')}} | {{Spec2("CSS Masks")}} | Extends its usage to HTML elements. Extends its syntax by making it a shorthand for the new mask-* properties defined in that specification. |
{{SpecName('SVG1.1', 'masking.html#MaskProperty', 'mask')}} | {{Spec2('SVG1.1')}} | Initial definition |
{{Compat("css.properties.mask")}}