Blob Divider
A copy-paste dividers component in pure HTML & CSS. Zero dependencies, framework-agnostic, MIT-licensed.
DividersHTMLCSSany framework
Copy into your project
HTML
<svg class="nuda-blobdiv" viewBox="0 0 400 40"
preserveAspectRatio="none" role="separator">
<path d="M0 20 Q60 5 120 20 T240 20 T360 20 T480 20 L400 20 L400 40 L0 40 Z"
fill="rgba(228,255,84,.08)" />
<path d="M0 20 Q60 5 120 20 T240 20 T360 20 T480 20"
fill="none" stroke="#e4ff54" stroke-width="1.2" />
</svg>CSS
.nuda-blobdiv {
width: 100%;
height: 30px;
animation: nuda-blob-shift 8s ease-in-out infinite;
}
@keyframes nuda-blob-shift {
0%, 100% { transform: translateX(0); }
50% { transform: translateX(-8px); }
}How to use Blob Divider
Paste the HTML where you need it and the CSS into a global stylesheet (or a <style> tag). Every class is prefixed nuda- so it never collides with Tailwind or your own styles. Tweak the CSS custom properties to match your design system.
Works in React, Vue, Svelte, Astro, Next.js, Nuxt, Laravel Blade, Django, Rails — or a single .html file. No npm install, no build step.