Skip to main content
Deno 2 is finally here 🎉️
Learn more
Latest
method Container.prototype.insertAfter
Re-export
import { Container } from "https://deno.land/x/postcss@8.4.16/lib/postcss.js";

Insert new node after old node within the container.

Parameters

oldNode: Child | number

Child or child’s index.

newNode:
| Child
| string
| Child[]
| string[]

New node.

Returns

this

This node for methods chain.