Search Articles — Sudonull

Search Results

In this project

CSS for large dropdown menus in forms

https://sudonull.com/css-for-large-dropdown-menus-in-forms

Learn how to fix the UX anti-pattern with limited select — CSS solutions, React examples, best practices. Increase dropdown height for lists with 100+ options without scrolling.

CSS Doom: rendering the game without Canvas

https://sudonull.com/css-doom-rendering-the-game-without-canvas

Learn how to implement Doom using pure CSS with 3D div elements. Technical details on transform, custom properties, and WAD file adaptation. For middle/senior developers.

CSS Studio: MCP style editor for AI agents

https://sudonull.com/css-studio-mcp-style-editor-for-ai-agents

Visual editor CSS Studio integrates dev build with Claude Code and Cursor via MCP. Edit styles by hand — agent updates Tailwind/CSS-in-JS. Learn trade-offs and benchmarks. Try demo on cssstudio.ai.

Tailwind CSS: limits of design systems for developers

https://sudonull.com/tailwind-css-limits-of-design-systems-for-developers

Analysis of why Tailwind is not suitable for scalable design systems. Analysis of CVA, CSS variables and @utility with code examples. Learn how to avoid tech debt in projects 6+ months.

From the web

Oct 24, 2009 ·

https://css-tricks.com/css-sprites/

Oct 24, 2009 · The sprite was the big combined graphic. CSS Sprites is pretty much the exact same theory: get the image once, and shift it around and only display parts of it. This reduces the overhead of having to fetch multiple images. Why use CSS Sprites ? It may seem counterintuitive to cram smaller images into a larger image.

Nov 7, 2025 ·

https://developer.mozilla.org/en-US/docs/Web/CSS/Guides/Images/Implementing_image_sprites

Nov 7, 2025 · Implementing image sprites in CSS Image sprites are used in numerous web apps where multiple images are used. Rather than include each image as a separate image file, it is much more memory- and bandwidth-friendly to send them as a single image; using background position as a way to distinguish between individual images in the same image file, so the number of HTTP requests is reduced.

May 28, 2026 ·

https://freefrontend.com/css-sprite/

May 28, 2026 · Find professional CSS sprites to elevate your web applications. Save development time with performance-tuned, clean templates for all modern viewports.

Jul 23, 2024 ·

https://www.geeksforgeeks.org/css/css-image-sprites/

Jul 23, 2024 · Image sprites are implemented using HTML and CSS , where a single image is defined and then styled using CSS to display the desired image segment. Example: This example shows the use of image sprites in CSS .

Jan 16, 2026 ·

https://www.tutorialpedia.org/blog/html-css-sprites/

Jan 16, 2026 · In the world of web development, optimizing the performance of a website is of utmost importance. One effective technique to achieve this is through the use of HTML CSS sprites . HTML CSS sprites involve combining multiple small images into a single larger image, known as a sprite sheet. This approach can significantly reduce the number of HTTP requests a browser needs to make, thereby ...

Trending Now