# PageCSS Dokuwiki Plugin Allows custom per-page CSS injection using `` blocks. Auto-supports Wrap plugin classes. ## Examples/Usage Define page-specific CSS using the `...` tag: ```css .notice { background: #fff3cd; color: #856404; padding: 15px; border-radius: 8px; } ``` Then apply the class: With Wrap Plugin: ```html Important Notice! ``` With raw HTML: ```html Important Notice! ``` The plugin will automatically generate equivalent `.wrap_notice` styles for use with the Wrap Plugin. ## Syntax Wrap your CSS block in ...: ```css .highlight { background: #e0f7fa; padding: 10px; } ``` The plugin will inject this CSS into the HTML for the page. Multiple blocks are allowed .wrap_* versions are auto-generated to support Wrap Plugin No output is shown for blocks — they only inject CSS ## Configuration and Settings This plugin requires no configuration if using the Wrap plugin.