diff options
author | kraccoon-dev <kraccoon0420@gmail.com> | 2022-02-24 19:55:59 +0900 |
---|---|---|
committer | Yeji Choi <61399588+yechoi42@users.noreply.github.com> | 2022-03-09 22:45:28 +0900 |
commit | 5f1fe948720f1ab0143c9a22d89c753d76081627 (patch) | |
tree | 55ba000526cc286b0fc80a187563e256fad38c58 /files/ko | |
parent | 9f958517af1854b65c73c6d46d6d7a3a5d2045a9 (diff) | |
download | translated-content-5f1fe948720f1ab0143c9a22d89c753d76081627.tar.gz translated-content-5f1fe948720f1ab0143c9a22d89c753d76081627.tar.bz2 translated-content-5f1fe948720f1ab0143c9a22d89c753d76081627.zip |
add compositing and blending
Diffstat (limited to 'files/ko')
-rw-r--r-- | files/ko/web/css/compositing_and_blending/index.md | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/files/ko/web/css/compositing_and_blending/index.md b/files/ko/web/css/compositing_and_blending/index.md new file mode 100644 index 0000000000..e42541fe6c --- /dev/null +++ b/files/ko/web/css/compositing_and_blending/index.md @@ -0,0 +1,46 @@ +--- +title: Compositing and Blending +slug: Web/CSS/Compositing_and_Blending +tags: + - CSS + - Compositing and Blending + - Guide + - Overview + - Reference +translation_of: Web/CSS/Compositing_and_Blending +--- +{{CSSRef}} + +**Compositing and Blending**은 서로 다른 요소의 모양을 단일 이미지로 결합하는 방법을 정의하는 CSS 모듈입니다. + +## 참고 + +### 속성 + +- {{cssxref("background-blend-mode")}} +- {{cssxref("isolation")}} +- {{cssxref("mix-blend-mode")}} + +### 데이터 타입 + +- {{cssxref("<blend-mode>")}} + +## 명세 + +| Specification | Status | Comment | +| ------------------------------------ | -------------------------------- | ------------------ | +| {{SpecName("Compositing")}} | {{Spec2("Compositing")}} | Initial definition | + +## 브라우저 호환성 + +### `background-blend-mode` 속성 + +{{Compat("css.properties.background-blend-mode")}} + +### `isolation` 속성 + +{{Compat("css.properties.isolation")}} + +### `mix-blend-mode` 속성 + +{{Compat("css.properties.mix-blend-mode")}} |