diff --git a/files/en-us/web/css/compositing_and_blending/index.md b/files/en-us/web/css/compositing_and_blending/index.md
index 4bd8fe6bf800c0e..19e997f462d5527 100644
--- a/files/en-us/web/css/compositing_and_blending/index.md
+++ b/files/en-us/web/css/compositing_and_blending/index.md
@@ -1,5 +1,5 @@
---
-title: Compositing and Blending
+title: CSS compositing and blending
slug: Web/CSS/Compositing_and_Blending
page-type: css-module
tags:
@@ -8,15 +8,81 @@ tags:
- Guide
- Overview
- Reference
-browser-compat:
- - css.properties.background-blend-mode
- - css.properties.isolation
- - css.properties.mix-blend-mode
+spec-urls:
+ - https://drafts.fxtf.org/compositing/
+ - https://www.w3.org/TR/compositing-1/
---
{{CSSRef}}
-**Compositing and Blending** is a CSS module that defines how shapes of different elements are combined into a single image.
+The **compositing and blending** CSS module defines how an element's background layers can be blended together, how an element can be blended with its container, and whether the element must create a new [stacking context](/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context).
+
+The properties in this CSS module can be used to define the blending mode that should be used, if any, to blend an element's background images and colors into a single background image. This module provides 16 blending modes. You can also define how an element's borders, background, and content, including text, emojis, and images, should be blended with the background of its container.
+
+### Compositing and blending in action
+
+In this example, each box has a border, two striped background images, and a solid color background. The common background for all the boxes contains a pattern of circles. The three boxes in the second row are set to blend with the background of the container.
+
+```html hidden
+
+
Normal, with no blending
+
Multiplies colors
+
Multiplies based on background color
+
Normal, with no blending
+
Multiplies colors
+
Multiplies based on background color
+
+```
+
+```css hidden
+/* creates a div with two offset striped background images and a background color. */
+div {
+ width: 200px;
+ height: 200px;
+ background-image:
+ repeating-linear-gradient(45deg, red 0 15px, pink 15px 30px),
+ repeating-linear-gradient(-45deg, blue 0 15px, lightblue 15px 30px);
+ background-size: 150px 150px;
+ background-repeat: no-repeat;
+ background-position: top left, bottom right;
+ background-color: palegoldenrod;
+ text-align: center;
+ padding-top: 150px;
+ font-family: sans-serif;
+ box-sizing: border-box;
+ border: 5px solid black;
+}
+div:nth-of-type(3n+1){
+ background-blend-mode: normal;
+}
+div:nth-of-type(3n+2){
+ background-blend-mode: multiply;
+}
+div:nth-of-type(3n+3){
+ background-blend-mode: overlay;
+}
+div:nth-of-type(n + 4) {
+ mix-blend-mode: difference;
+}
+/* put a pink background with transparent round holes that covers the entire element, and lay the examples in two rows with three columns each */
+section {
+ padding: 0.75em;
+ background: radial-gradient(circle, transparent 0 20px, rgb(255, 200, 200) 20px);
+ background-size: 60px 60px;
+ background-position: center;
+ display: inline-grid;
+ grid-template-columns: 1fr 1fr 1fr;
+ gap: 1em;
+}
+/* make some of the text more legible */
+span {
+ background-color: #ffffff99;
+}
+```
+
+{{ EmbedLiveSample('Compositing_and_blending_in_action', "630", "300") }}
+
+ Notice how the background, border, and the content are all impacted as a result of the blending. To see the code for this sample, [view the source on Github](https://github.com/mdn/content/blob/main/files/en-us/web/css/compositing_and_blending/index.md?plain=1).
## Reference
@@ -26,14 +92,25 @@ browser-compat:
- {{cssxref("isolation")}}
- {{cssxref("mix-blend-mode")}}
-### Data types
+## Related concepts
-- {{cssxref("<blend-mode>")}}
+- {{cssxref("blend-mode")}} data type
+- {{cssxref("backdrop-filter")}} CSS property
+- {{cssxref("filter")}} CSS property
+- {{cssxref("mask-composite")}} CSS property
+- {{cssxref("background-color")}} CSS property
+- {{cssxref("background-image")}} CSS property
+- {{glossary("stacking context")}} glossary term
+- {{ SVGElement("feBlend")}} SVG filter primitive
+- {{ SVGElement("feComposite")}} SVG filter primitive
## Specifications
{{Specifications}}
-## Browser compatibility
+## See also
-{{Compat}}
+- Properties in the [CSS filter effects](/en-US/docs/Web/CSS/Filter_Effects) module enable applying filters effects, such as blurring and changing color intensity, to images, backgrounds, and borders.
+- [Compositing And Blending In CSS](https://www.sarasoueidan.com/blog/compositing-and-blending-in-css/) (2015)
+- [Editing Images in CSS: Blend Modes](https://code.tutsplus.com/tutorials/editing-images-in-css-blend-modes--cms-26058) (2022)
+- [web.dev: blend modes](https://web.dev/learn/css/blend-modes/) (2021)
diff --git a/files/en-us/web/css/css_animations/index.md b/files/en-us/web/css/css_animations/index.md
index 3c86396e2aa8019..5a7ed74efc88823 100644
--- a/files/en-us/web/css/css_animations/index.md
+++ b/files/en-us/web/css/css_animations/index.md
@@ -1,5 +1,5 @@
---
-title: CSS Animations
+title: CSS animations
slug: Web/CSS/CSS_Animations
page-type: css-module
tags:
@@ -8,20 +8,279 @@ tags:
- Guide
- Overview
- Reference
-browser-compat: css.properties.animation
+spec-urls:
+ - https://w3c.github.io/csswg-drafts/css-animations-2/
+ - https://w3c.github.io/csswg-drafts/css-animations/
---
{{CSSRef}}
-**CSS Animations** is a module of CSS that lets you animate the values of CSS properties over time, using keyframes.
-The behavior of these keyframe animations can be controlled by specifying their timing function, duration, their number of repetitions, and other attributes.
+The animations CSS module lets you animate the values of CSS properties, such as background-position and transform, over time by using keyframes. Each keyframe describes how the animated element should render at a given time during the animation sequence. You can use the properties in the animations module to control the duration, number of repetitions, delayed start, and other aspects of an animation.
+
+### Animations in action
+
+To view the animation in the box below, click the checkbox 'Play the animation' or hover the cursor over the box. When the animating is active, the cloud at the top changes shape, snowflakes fall, and the snow level at the bottom rises. To pause the animation, uncheck the checkbox or move your cursor away from the box.
+
+```html hidden
+
+
+