SShortSingh.
Back to feed

CSS Can Now Style Native Select Dropdowns Without JavaScript Rebuilds

0
·6 views

Browsers are gaining support for a new CSS feature called 'customizable select,' which allows developers to fully style native HTML select dropdowns using the new 'appearance: base-select' value. Previously, the select element's popup was largely controlled by the operating system, forcing developers to rebuild the control in JavaScript to match custom designs. The new approach lets developers style the picker, options, arrow icon, and checkmark with CSS while retaining native form submission, keyboard interaction, and accessibility behavior. Chrome and Edge shipped support in version 135, and Safari followed with version 27 released on September 17, 2026, while Firefox support remains experimental and off by default. Developers are advised to treat the feature as progressive enhancement, ensuring unstyled, functional dropdowns still appear in unsupported browsers.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

Dev Drops AI Race Agent Idea, Opts for Classic Rule-Based Tactics System

A developer building EvoWild Run, a creature-breeding racing game, initially planned to let players deploy AI agents to make real-time decisions during races. The concept aimed to replace direct player control so that a creature's bred traits, not the player's reflexes, would determine race outcomes. To avoid splitting the game into two systems for AI and non-AI users, the developer unified the approach by converting UI-selected tactics into a common 'Agent File' format. Upon closer inspection, the runtime logic — checking conditions and executing predefined commands — turned out to be a classic rule-based system rather than true AI. The developer concluded that the 'Race Agent' label was misleading, and that games have long used similar tactics-programming mechanics without calling them AI.

0
ProgrammingDEV Community ·

Developer Releases node-raft-rsm SDK to Add Raft Consensus to Existing Node.js Services

A developer has published node-raft-rsm, an open-source Node.js SDK designed to embed Raft consensus logic into existing services without requiring a full system rewrite. The library targets applications such as schedulers, metadata services, and control planes that need leader election and log replication but do not fit neatly around external systems like etcd. It exposes a small typed API surface — including RaftNode.create, propose, and read — while leaving storage, transport, state machine, and domain logic entirely under the application's control. The project is currently under active development and is explicitly not production-ready, intended for integration testing and API evaluation. According to the author, the goal is to let teams route existing mutation paths through Raft semantics without redesigning their service architecture around a general-purpose platform.

0
ProgrammingDEV Community ·

Developer finds 14 bugs in real-world testing after 1,800 automated tests passed

A developer building Filament Studio, a Laravel plugin with automation and MCP server features, discovered 14 defects by manually testing the app in a realistic environment after an 1,800-test automated suite and mutation testing had indicated the code was in good shape. The real-world setup used HTTPS webhooks, a live queue worker, MySQL, and a browser-driven admin panel — conditions the automated tests had never replicated. One critical bug caused flows triggered without the visual designer to silently complete with zero steps executed, because the graph-walking engine only handled edge formats produced by its own UI. A second serious flaw left webhook HMAC authentication effectively open to anyone, since a missing config field meant webhook secrets were never generated, and the verifier fell back to validating against an empty string. The developer concluded that nearly every bug shared the same pattern: the system reported success while either doing nothing or doing the wrong thing.

0
ProgrammingDEV Community ·

How Developers Are Quietly Building Personal AI Hierarchies for Different Tasks

Many developers have unconsciously assigned different AI tools to specific tasks based on trust, cost, and capability rather than a deliberate plan. One developer describes using Claude Opus for complex planning and hard bugs, while Gemini 3.1 Pro handles routine coding tasks despite hallucinating more, simply because it offers greater usage headroom. Outside the IDE, ChatGPT serves quick throwaway questions, Claude handles urgent drafts, and Gemini is reserved exclusively for calculation-heavy problems where it has proven consistently reliable. The system only became visible when an agentic AI over-engineered a simple formatting check, burning multiple actions on a task ChatGPT resolved in a single reply. The experience highlighted that effective AI routing is less about raw intelligence and more about matching the shape of the tool to the shape of the task.