From ec132201baf3853427a070b7a373233e5bcf0626 Mon Sep 17 00:00:00 2001 From: Nico Burns Date: Mon, 25 Sep 2023 23:30:38 +0100 Subject: [PATCH] Add Display::Contents to the release notes --- RELEASES.md | 1 + 1 file changed, 1 insertion(+) diff --git a/RELEASES.md b/RELEASES.md index fe4a13471..39c636d23 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -31,6 +31,7 @@ Example usage change: ### Added - Support for [CSS Block layout](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Flow_Layout/Block_and_Inline_Layout_in_Normal_Flow#elements_participating_in_a_block_formatting_context) has been added. This can be used via the new `Display::Block` variant of the `Display` enum. Note that inline, inline-block and float have *not* been implemented. The use case supported is block container nodes which contain block-level children. +- Support for [`Display::Contents`](https://css-tricks.com/get-ready-for-display-contents/) - Added `insert_child_at_index()` method to the `Taffy` tree. This can be used to insert a child node at any position instead of just the end. ### Removed