Pseudo Elements Review CSS and JavaScript for pseudo-element best practices and View Transitions API usage. How It Works 1. Read the specified files (or prompt user for files/pattern) 2. Check against all rules below 3. Output findings in format Rule Categories | Priority | Category | Prefix | |----------|----------|--------| | 1 | Before/After | | | 2 | View Transitions | | | 3 | Native Styling | | Rules Before/After Rules ::before and ::after require content property to render. Fail: Pass: Use pseudo-elements for decorative content instead of extra DOM nodes. Fail: Pass: Parent must have po…