!important Remover - Online Clean Up Overqualified Rules
Paste your CSS and strip all `!important` declarations in one click. See a list of affected rules. Local tool.
UD5 Toolkit
Extract above‑the‑fold CSS from your stylesheets. Inline critical styles to boost First Contentful Paint and improve Core Web Vitals. Paste your HTML & CSS below, set the viewport, and get the critical CSS instantly.
Critical CSS refers to the minimum set of CSS rules required to render the above‑the‑fold portion of a web page — the content visible before any scrolling. By inlining these styles directly into the <head> of your HTML and deferring the rest, you eliminate render‑blocking CSS requests. This dramatically improves First Contentful Paint (FCP) and Largest Contentful Paint (LCP), two key Core Web Vitals metrics that affect SEO rankings and user experience.
This tool renders your HTML and CSS inside a sandboxed iframe at the viewport dimensions you specify. It then:
querySelectorAll.@font-face, :root variables, and applicable media queries.All processing happens locally in your browser — your code is never sent to any server.
Choose the viewport that matches your primary audience:
For best results, extract critical CSS at your most common viewport and consider generating separate critical CSS files for mobile and desktop if your layouts differ significantly.
Critical CSS focuses specifically on styles needed for the initial viewport (above‑the‑fold). It may include rules that apply to content further down the page if those rules also style above‑the‑fold elements. Unused CSS removal (like PurgeCSS) strips any rule that doesn't match any element on the entire page. Critical CSS is a subset optimization for render‑blocking resources; unused CSS removal is a broader size optimization. They complement each other — use both for maximum performance.
The standard pattern:
<style> tag in your <head>.<link rel="preload"> with an onload handler:
<link rel="preload" href="full.css" as="style" onload="this.onload=null;this.rel='stylesheet'"><noscript> fallback for users with JavaScript disabled.The "Optimized HTML" tab in this tool generates a ready‑to‑use template following this pattern.
Yes — significantly. By inlining critical CSS:
Many sites see FCP improvements of 0.5–1.5 seconds after implementing critical CSS, especially on slower connections.
Yes. The extractor evaluates @media queries against the current viewport settings. Media queries that match your selected viewport are processed and their critical rules are included. Media queries that don't match are skipped. This ensures your critical CSS is optimized for the target viewport while keeping responsive behavior intact for that specific breakpoint.
For most websites, critical CSS ranges from 5–25 KB (uncompressed), which is a fraction of the total stylesheet. After gzip compression (which most servers apply), this often shrinks to 2–8 KB — small enough to inline without bloating the HTML. If your extracted critical CSS exceeds ~30 KB, consider whether your above‑the‑fold design is too complex or if you're including unnecessary rules.
Paste your CSS and strip all `!important` declarations in one click. See a list of affected rules. Local tool.
Paste a linear‑gradient CSS value and see all the color stops listed as a palette. Copy individual hex codes. Quick reference.
Upload a photo and extract a smooth CSS gradient that represents its color mood. Copy the linear-gradient code.
Upload a simple shape image and automatically trace its outline to a CSS clip‑path polygon. For creative web design. Local.
Take multiple evenly spaced screenshots from a video and combine them into a single filmstrip image. Local canvas.
Place colored points on a canvas and see a smooth gradient mesh interpolate between them. Experimental and beautiful. Download PNG.
View all CSS system colors (Canvas, ButtonFace, GrayText) as swatches. Click to copy. For forced‑colors adaptation.
Set up multiple @layers and use revert‑layer to fall back. See the computed style and cascade resolution live.
Apply real-time CSS filters or canvas effects to a video and download the processed output. Experiment with video post-processing locally.
Enter water temperature and activity to get recommended wetsuit thickness (2/3mm to 6/5mm). Stay comfortable.
Enter a hex color and get its relative luminance per WCAG definition. Understand why this matters for contrast.
An interactive reference for regular expression tokens. Click a token to see its explanation and example. Learn regex faster.
Pick a scale (Major, Harmonic Minor, Dorian…) and a root note. Shows the notes and highlights them on piano & guitar fretboard.
Check and beautify your TOML config files. Highlights errors and aligns tables and arrays. Safe local parsing.
Paste a Quartz cron expression (with seconds field) and translate it to standard Unix cron. For devops migrations.
Select a meat or vegetable to see the best wood pairing for smoking. Flavor descriptions and intensity chart.
Check read/write/execute boxes and see the octal and symbolic chmod representation. Learn and compute file permissions.
Searchable table of well‑known TCP and UDP ports with their services. Check 80, 443, 3306, and many more.
Toggle content‑visibility: auto on long blocks and see the rendering time difference. Understand this powerful property.
Test how `content‑type: text/html` vs `content‑type: image/svg+xml` affects SVG rendering in the browser. Modern performance hint.
Construct HTTP Link headers for server push replacements, preload, and preconnect. Copy the header value.
List all resources loaded by the current page and their detailed timing breakdown. In‑browser waterfall.
See your current page load broken down into DNS, TLS, request, and DOM phases. Understand where time is spent.
Demonstrate how to yield heavy computation to user input using the isInputPending API. Keep UI responsive.
Calculate large Fibonacci numbers in a Web Worker. See the UI remain responsive. Copy the pattern for your app.
Drop a PNG file and see all its chunks (IHDR, tEXt, etc.). Extract hidden text and color profiles. Pure JavaScript reader.
See your current page load broken down into DNS, TLS, request, and DOM phases. Understand where time is spent.
Adjust page characteristics (image size, server delay, layout shift) and see the simulated Core Web Vitals scores. Understand what impacts performance.
Test a regex against long strings and measure execution time. Detect catastrophic backtracking patterns. Visual warning if slow.
Compress text with Brotli at different quality levels. See size reduction and time. Find the sweet spot for your static assets.