The Radio State Machine

Post pobrano z: The Radio State Machine

Managing state in CSS is not exactly the most obvious thing in the world, and to be honest, it is not always the best choice either. If an interaction carries business logic, needs persistence, depends on data, or has to coordinate multiple moving parts, JavaScript is usually the right tool for the job.

That said, not every kind of state deserves a trip through JavaScript.

Sometimes we are dealing with purely visual UI state: whether a panel is open, an icon changed its appearance, a card is flipped, or whether a decorative part of the interface should move from one visual mode to another.

In cases like these, keeping the logic in CSS can be not just possible, but preferable. It keeps the behavior close to the presentation layer, reduces JavaScript overhead, and often leads to surprisingly elegant solutions.

The Boolean solution

One of the best-known examples of CSS state management is the checkbox hack.

If you have spent enough time around CSS, you have probably seen it used for all kinds of clever UI tricks. It can be used to restyle the checkbox itself, toggle menus, control inner visuals of components, reveal hidden sections, and even switch an entire theme. It is one of those techniques that feels slightly mischievous the first time you see it, and then immediately becomes useful.

If you have never used it before, the checkbox hack concept is very simple:

  1. We place a hidden checkbox at the top of the document.
<input type="checkbox" id="state-toggle" hidden>
  1. We connect a label to it, so the user can toggle it from anywhere we want.
<label for="state-toggle" class="state-button">
  Toggle state
</label>
  1. In CSS, we use the :checked state and sibling combinators to style other parts of the page based on whether that checkbox is checked.
#state-toggle:checked ~ .element {
  /* styles when the checkbox is checked */
}

.element {
  /* default styles */
}

In other words, the checkbox becomes a little piece of built-in UI state that CSS can react to. Here is a simple example of how it can be used to switch between light and dark themes:

CodePen Embed Fallback

We have :has()

Note that I’ve placed the checkbox at the top of the document, before the rest of the content. This was important in the days before the :has() pseudo-class, because CSS only allowed us to select elements that come after the checkbox in the DOM. Placing the checkbox at the top was a way to ensure that we could target any element in the page with our selectors, regardless of the label position in the DOM.

But now that :has() is widely supported, we can place the checkbox anywhere in the document, and still target elements that come before it. This gives us much more flexibility in how we structure our HTML. For example, we can place the checkbox right next to the label, and still control the entire page with it.

Here is a classic example of the checkbox hack theme selector, with the checkbox placed next to the label, and using :has() to control the page styles:

<div class="content">
  <!-- content -->
</div>

<label class="theme-button">
  <input type="checkbox" id="theme-toggle" hidden>
  Toggle theme
</label>
body {
  /* other styles */

  /* default to dark mode */
  color-scheme: dark;

  /* when the checkbox is checked, switch to light mode */
  &:has(#theme-toggle:checked) {
    color-scheme: light;
  }
}

/* use the color `light-dark()` on the content */
.content {
  background-color: light-dark(#111, #eee);
  color: light-dark(#fff, #000);
}

Note: I’m using the ID selector (#) in the CSS as it is already part of the checkbox hack convention, and it is a simple way to target the checkbox. If you worry about CSS selectors performance, don’t.

CodePen Embed Fallback

Hidden, not disabled (and not so accessible)

Note I’ve been using the HTML hidden global attribute to hide the checkbox from view. This is a common practice in the checkbox hack, as it keeps the input in the DOM and allows it to maintain its state, while removing it from the visual flow of the page.

Sadly, the hidden attribute also hides the element from assistive technologies, and the label that controls it does not have any interactive behavior on its own, which means that screen readers and other assistive devices will not be able to interact with the checkbox.

This is a significant accessibility concern, and to fix this, we need a different approach: instead of wrapping the checkbox in a label and hiding it with hidden, we can turn the checkbox into the button itself.

<input type="checkbox" class="theme-button" aria-label="Toggle theme">

No hidden, no label, just a fully accessible checkbox. And to style it like a button, we can use the appearance property to remove the default checkbox styling and apply our own styles.

.theme-button {
  appearance: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  /* other styles */
  
  /* Add text using a simple pseudo-element */
  &::after {
    content: "Toggle theme";
  }
}
CodePen Embed Fallback

This way, we get a fully accessible toggle button that still controls the state of the page through CSS, without relying on hidden inputs or labels. And we’re going to use this approach in all the following examples as well.

Getting more states

So, the checkbox hack is a great way to manage simple binary state in CSS, but it also has a very clear limitation. A checkbox gives us two states: checked and not checked. On and off. That is great when the UI only needs a binary choice, but it is not always enough.

What if we want a component to be in one of three, four, or seven modes? What if a visual system needs a proper set of mutually exclusive states instead of a simple toggle?

That is where the Radio State Machine comes in.

Simple three-state example

The core idea is very similar to the checkbox hack, but instead of a single checkbox, we use a bunch of radio buttons. Each radio button represents a different state, and because radios let us choose one option out of many, they give us a surprisingly flexible way to build multi-state visual systems directly in CSS.

CodePen Embed Fallback

Let’s break down how this works:

<div class="state-button">
  <input type="radio" name="state" data-state="one" aria-label="state one" checked>
  <input type="radio" name="state" data-state="two" aria-label="state two">
  <input type="radio" name="state" data-state="three" aria-label="state three">
</div>

We created a group of radio buttons. Note that they all share the same name attribute (state in this case). This ensures that only one radio can be selected at a time, giving us mutually exclusive states.

We gave each radio button a unique data-state that we can target in CSS to apply different styles based on which state is selected, and the checked attribute to set the default state (in this case, one is the default).

Style the buttons

The style for the radio buttons themselves is similar to the checkbox button we created earlier. We use appearance: none to remove the default styling, and then apply our own styles to make them look like buttons.

input[name="state"] {
  appearance: none;
  padding: 1em;
  border: 1px solid;
  font: inherit;
  color: inherit;
  cursor: pointer;
  user-select: none;

  /* Add text using a pseudo-element */
  &::after {
    content: "Toggle State";
  }

  &:hover {
    background-color: #fff3;
  }
}

The main difference is that we have multiple radio buttons, each representing a different state, and we only need to show the one for the next state in the sequence, while hiding the others. We can’t use display: none on the radio buttons themselves, because that would make them inaccessible, but we can achieve this by adding a few properties as a default, and overriding them for the radio button we want to show.

  1. position: fixed; to take the radio buttons out of the normal flow of the page.
  2. pointer-events: none; to make sure the radio buttons themselves are not clickable.
  3. opacity: 0; to make the radio buttons invisible.

That will hide all the radio buttons by default, while keeping them in the DOM and accessible.

Then we can show the next radio button in the sequence by targeting it with the adjacent sibling combinator (+) when the current radio button is checked. This way, only one radio button is visible at a time, and users can click on it to move to the next state.

input[name="state"] {
  /* other styles */

  position: fixed;
  pointer-events: none;
  opacity: 0;

  &:checked + & {
    position: relative;
    pointer-events: all;
    opacity: 1;
  }
}

And to make the flow circular, we can also add a rule to show the first radio button when the last one is checked. This is, of course, optional, and we’ll talk about linear and bi-directional flows later.

&:first-child:has(~ :last-child:checked) {}

One last touch is to add an outline to the radio buttons container. As we are always hiding the checked radio buttons, we are also hiding its outline. By adding an outline to the container, we can ensure that users can still see where they are when they navigate through the states using the keyboard.

.state-button:has(:focus-visible) {
  outline: 2px solid red;
}

Style the rest

Now we can add styles for each state using the :checked selector to target the selected radio button. Each state will have its own unique styles, and we can use the data-state attribute to differentiate between them.

body {
  /* other styles */
  
  &:has([data-state="one"]:checked) .element {
    /* styles when the first radio button is checked */
  }

  &:has([data-state="two"]:checked) .element {
    /* styles when the second radio button is checked */
  }

  &:has([data-state="three"]:checked) .element {
    /* styles when the third radio button is checked */
  }
}

.element {
  /* default styles */
}

And, of course, this pattern can be used for far more than a simple three-state toggle. The same idea can power steppers, view switchers, card variations, visual filters, layout modes, small interactive demos, and even more elaborate CSS-only toys. Some of these use cases are mostly practical, some are more playful, and we are going to explore a few of them later in this article.

CodePen Embed Fallback

Utilize custom properties

Now that we are back to keeping all the state inputs in one place, and we are already leaning on :has(), we get another very practical advantage: custom properties.

In previous examples, we often set the final properties directly per state, which meant targeting the element itself each time. That works, but it can get noisy fast, especially as the selectors become more specific and the component grows.

A cleaner pattern is to assign state values to variables at a higher level, take advantage of how custom properties naturally cascade down, and then consume those variables wherever needed inside the component.

For example, we can define --left and --top per state:

body {
  /* ... */
  &:has([data-state="one"]:checked) {
    --left: 48%;
    --top: 48%;
  }
  &:has([data-state="two"]:checked) {
    --left: 73%;
    --top: 81%;
  }
  /* other states... */
}

Then we simply consume those values on the element itself:

.map::after {
  content: '';
  position: absolute;
  left: var(--left, 50%);
  top: var(--top, 50%);
  /* ... */
}
CodePen Embed Fallback

This keeps state styling centralized, reduces selector repetition, and makes each component class easier to read because it only consumes variables instead of re-implementing state logic.

Use math, not just states

Once we move state into variables, we can also treat state as a number and start doing calculations.

Instead of assigning full visual values for every state, we can define a single numeric variable:

body {
  /* ... */
  &:has([data-state="one"]:checked) { --state: 1; }
  &:has([data-state="two"]:checked) { --state: 2; }
  &:has([data-state="three"]:checked) { --state: 3; }
  &:has([data-state="four"]:checked) { --state: 4; }
  &:has([data-state="five"]:checked) { --state: 5; }
}

Now we can take that value and use it in calculations on any element we want. For example, we can drive the background color directly from the active state:

.card {
  background-color: hsl(calc(var(--state) * 60) 50% 50%);
}

And if we define an index variable like --i per item (at least until sibling-index() is more widely available), we can calculate each item’s style, like position and opacity, relative to the active state and its place in the sequence.

.card {
  position: absolute;
  transform:
    translateX(calc((var(--i) - var(--state)) * 110%))
    scale(calc(1 - (abs(var(--i) - var(--state)) * 0.3)));
  opacity: calc(1 - (abs(var(--i) - var(--state)) * 0.4));
}

This is where the pattern becomes really fun: one --state variable drives an entire visual system. You are no longer writing separate style blocks for every card in every state. You define a rule once, give each item its own index (--i), and let CSS do the rest.

CodePen Embed Fallback

Not every state flow should loop

You may have noticed that unlike the earlier demos, the last example was not circular. Once you reach the last state, you get stuck there. This is because I removed the rule that shows the first radio button when the last one is checked, and instead added a disabled radio button as a placeholder that appears when the last state is active.

<input type="radio" name="state" disabled>

This pattern is useful for progressive flows like onboarding steps, checkout progress, or multi-step setup forms where the final step is a real endpoint. That said, the states are still accessible through keyboard navigation, and that is a good thing, unless you don’t want it to be.

In that case, you can replace the position, pointer-events, and opacity properties with display: none as a default, and display: block (or inline-block, etc.) for the one that should be visible and interactive. This way, the hidden states will not be focusable or reachable by keyboard users, and the flow will be truly linear.

CodePen Embed Fallback

Bi-directional flows

Of course, interaction should not only move forward. Sometimes users need to go back too, so we can add a “Previous” button by also showing the radio button that points to the previous state in the sequence.

To update the CSS so each state reveals not one, but two radio buttons, we need to expand the selectors to target both the next and previous buttons for each state. We select the next button like before, using the adjacent sibling combinator (+), and the previous button using :has() to look for the checked state on the next button (:has(+ :checked)).

input[name="state"] {
  position: fixed;
  pointer-events: none;
  opacity: 0;
  /* other styles */
  
  &:has(+ :checked),
  &:checked + &  {
    position: relative;
    pointer-events: all;
    opacity: 1;
  }

  /* Set text to "Next" as a default */
  &::after {
    content: "Next";
  }

  /* Change text to "Previous" when the next state is checked */
  &:has(+ :checked)::after {
    content: "Previous";
  }
}

This way, users can navigate in either direction through the states.

CodePen Embed Fallback

This is a simple extension of the previous logic, but it gives us much more control over the flow of the state machine, and allows us to create more complex interactions while still keeping the state management in CSS.

Accessibility notes

Before wrapping up, one important reminder: this pattern should stay visual in responsibility, but accessible in behavior. Because the markup is built on real form controls, we already get a strong baseline, but we need to be deliberate about accessibility details:

  • Make the radio buttons clearly interactive (cursor, size, spacing) and keep their wording explicit.
  • Keep visible focus styles so keyboard users can always track where they are.
  • If a step is not available, communicate that state clearly in the UI, not only by color.
  • Respect reduced motion preferences when state changes animate layout or opacity.
  • If state changes carry business meaning (validation, persistence, async data), hand that part to JavaScript and use CSS state as the visual layer.

In short: the radio state machine works best when it enhances interaction, not when it replaces semantics or application logic.

Closing thoughts

The radio state machine is one of those CSS ideas that feels small at first, and then suddenly opens a lot of creative doors.

CodePen Embed Fallback

With a few well-placed inputs, and a couple of smart selectors, we can build interactions that feel alive, expressive, and surprisingly robust, all while keeping visual state close to the layer that actually renders it.

But it is still just that: an idea.

Use it when the state is mostly visual, local, and interaction-driven. Skip it when the flow depends on business rules, external data, persistence, or complex orchestration.

Believe me, if there were a prize for forcing complex state management into CSS just because we technically can, I would have won it long ago. The real win is not proving CSS can do everything, but learning exactly where it shines.

So here is the challenge: pick one tiny UI in your project, rebuild it as a mini state machine, and see what happens. If it becomes cleaner, keep it. If it gets awkward, roll it back with zero guilt. And don’t forget to share your experiments.


The Radio State Machine originally handwritten and published with love on CSS-Tricks. You should really get the newsletter as well.

The Radio State Machine

Post pobrano z: The Radio State Machine

Managing state in CSS is not exactly the most obvious thing in the world, and to be honest, it is not always the best choice either. If an interaction carries business logic, needs persistence, depends on data, or has to coordinate multiple moving parts, JavaScript is usually the right tool for the job.

That said, not every kind of state deserves a trip through JavaScript.

Sometimes we are dealing with purely visual UI state: whether a panel is open, an icon changed its appearance, a card is flipped, or whether a decorative part of the interface should move from one visual mode to another.

In cases like these, keeping the logic in CSS can be not just possible, but preferable. It keeps the behavior close to the presentation layer, reduces JavaScript overhead, and often leads to surprisingly elegant solutions.

The Boolean solution

One of the best-known examples of CSS state management is the checkbox hack.

If you have spent enough time around CSS, you have probably seen it used for all kinds of clever UI tricks. It can be used to restyle the checkbox itself, toggle menus, control inner visuals of components, reveal hidden sections, and even switch an entire theme. It is one of those techniques that feels slightly mischievous the first time you see it, and then immediately becomes useful.

If you have never used it before, the checkbox hack concept is very simple:

  1. We place a hidden checkbox at the top of the document.
<input type="checkbox" id="state-toggle" hidden>
  1. We connect a label to it, so the user can toggle it from anywhere we want.
<label for="state-toggle" class="state-button">
  Toggle state
</label>
  1. In CSS, we use the :checked state and sibling combinators to style other parts of the page based on whether that checkbox is checked.
#state-toggle:checked ~ .element {
  /* styles when the checkbox is checked */
}

.element {
  /* default styles */
}

In other words, the checkbox becomes a little piece of built-in UI state that CSS can react to. Here is a simple example of how it can be used to switch between light and dark themes:

CodePen Embed Fallback

We have :has()

Note that I’ve placed the checkbox at the top of the document, before the rest of the content. This was important in the days before the :has() pseudo-class, because CSS only allowed us to select elements that come after the checkbox in the DOM. Placing the checkbox at the top was a way to ensure that we could target any element in the page with our selectors, regardless of the label position in the DOM.

But now that :has() is widely supported, we can place the checkbox anywhere in the document, and still target elements that come before it. This gives us much more flexibility in how we structure our HTML. For example, we can place the checkbox right next to the label, and still control the entire page with it.

Here is a classic example of the checkbox hack theme selector, with the checkbox placed next to the label, and using :has() to control the page styles:

<div class="content">
  <!-- content -->
</div>

<label class="theme-button">
  <input type="checkbox" id="theme-toggle" hidden>
  Toggle theme
</label>
body {
  /* other styles */

  /* default to dark mode */
  color-scheme: dark;

  /* when the checkbox is checked, switch to light mode */
  &:has(#theme-toggle:checked) {
    color-scheme: light;
  }
}

/* use the color `light-dark()` on the content */
.content {
  background-color: light-dark(#111, #eee);
  color: light-dark(#fff, #000);
}

Note: I’m using the ID selector (#) in the CSS as it is already part of the checkbox hack convention, and it is a simple way to target the checkbox. If you worry about CSS selectors performance, don’t.

CodePen Embed Fallback

Hidden, not disabled (and not so accessible)

Note I’ve been using the HTML hidden global attribute to hide the checkbox from view. This is a common practice in the checkbox hack, as it keeps the input in the DOM and allows it to maintain its state, while removing it from the visual flow of the page.

Sadly, the hidden attribute also hides the element from assistive technologies, and the label that controls it does not have any interactive behavior on its own, which means that screen readers and other assistive devices will not be able to interact with the checkbox.

This is a significant accessibility concern, and to fix this, we need a different approach: instead of wrapping the checkbox in a label and hiding it with hidden, we can turn the checkbox into the button itself.

<input type="checkbox" class="theme-button" aria-label="Toggle theme">

No hidden, no label, just a fully accessible checkbox. And to style it like a button, we can use the appearance property to remove the default checkbox styling and apply our own styles.

.theme-button {
  appearance: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  /* other styles */
  
  /* Add text using a simple pseudo-element */
  &::after {
    content: "Toggle theme";
  }
}
CodePen Embed Fallback

This way, we get a fully accessible toggle button that still controls the state of the page through CSS, without relying on hidden inputs or labels. And we’re going to use this approach in all the following examples as well.

Getting more states

So, the checkbox hack is a great way to manage simple binary state in CSS, but it also has a very clear limitation. A checkbox gives us two states: checked and not checked. On and off. That is great when the UI only needs a binary choice, but it is not always enough.

What if we want a component to be in one of three, four, or seven modes? What if a visual system needs a proper set of mutually exclusive states instead of a simple toggle?

That is where the Radio State Machine comes in.

Simple three-state example

The core idea is very similar to the checkbox hack, but instead of a single checkbox, we use a bunch of radio buttons. Each radio button represents a different state, and because radios let us choose one option out of many, they give us a surprisingly flexible way to build multi-state visual systems directly in CSS.

CodePen Embed Fallback

Let’s break down how this works:

<div class="state-button">
  <input type="radio" name="state" data-state="one" aria-label="state one" checked>
  <input type="radio" name="state" data-state="two" aria-label="state two">
  <input type="radio" name="state" data-state="three" aria-label="state three">
</div>

We created a group of radio buttons. Note that they all share the same name attribute (state in this case). This ensures that only one radio can be selected at a time, giving us mutually exclusive states.

We gave each radio button a unique data-state that we can target in CSS to apply different styles based on which state is selected, and the checked attribute to set the default state (in this case, one is the default).

Style the buttons

The style for the radio buttons themselves is similar to the checkbox button we created earlier. We use appearance: none to remove the default styling, and then apply our own styles to make them look like buttons.

input[name="state"] {
  appearance: none;
  padding: 1em;
  border: 1px solid;
  font: inherit;
  color: inherit;
  cursor: pointer;
  user-select: none;

  /* Add text using a pseudo-element */
  &::after {
    content: "Toggle State";
  }

  &:hover {
    background-color: #fff3;
  }
}

The main difference is that we have multiple radio buttons, each representing a different state, and we only need to show the one for the next state in the sequence, while hiding the others. We can’t use display: none on the radio buttons themselves, because that would make them inaccessible, but we can achieve this by adding a few properties as a default, and overriding them for the radio button we want to show.

  1. position: fixed; to take the radio buttons out of the normal flow of the page.
  2. pointer-events: none; to make sure the radio buttons themselves are not clickable.
  3. opacity: 0; to make the radio buttons invisible.

That will hide all the radio buttons by default, while keeping them in the DOM and accessible.

Then we can show the next radio button in the sequence by targeting it with the adjacent sibling combinator (+) when the current radio button is checked. This way, only one radio button is visible at a time, and users can click on it to move to the next state.

input[name="state"] {
  /* other styles */

  position: fixed;
  pointer-events: none;
  opacity: 0;

  &:checked + & {
    position: relative;
    pointer-events: all;
    opacity: 1;
  }
}

And to make the flow circular, we can also add a rule to show the first radio button when the last one is checked. This is, of course, optional, and we’ll talk about linear and bi-directional flows later.

&:first-child:has(~ :last-child:checked) {}

One last touch is to add an outline to the radio buttons container. As we are always hiding the checked radio buttons, we are also hiding its outline. By adding an outline to the container, we can ensure that users can still see where they are when they navigate through the states using the keyboard.

.state-button:has(:focus-visible) {
  outline: 2px solid red;
}

Style the rest

Now we can add styles for each state using the :checked selector to target the selected radio button. Each state will have its own unique styles, and we can use the data-state attribute to differentiate between them.

body {
  /* other styles */
  
  &:has([data-state="one"]:checked) .element {
    /* styles when the first radio button is checked */
  }

  &:has([data-state="two"]:checked) .element {
    /* styles when the second radio button is checked */
  }

  &:has([data-state="three"]:checked) .element {
    /* styles when the third radio button is checked */
  }
}

.element {
  /* default styles */
}

And, of course, this pattern can be used for far more than a simple three-state toggle. The same idea can power steppers, view switchers, card variations, visual filters, layout modes, small interactive demos, and even more elaborate CSS-only toys. Some of these use cases are mostly practical, some are more playful, and we are going to explore a few of them later in this article.

CodePen Embed Fallback

Utilize custom properties

Now that we are back to keeping all the state inputs in one place, and we are already leaning on :has(), we get another very practical advantage: custom properties.

In previous examples, we often set the final properties directly per state, which meant targeting the element itself each time. That works, but it can get noisy fast, especially as the selectors become more specific and the component grows.

A cleaner pattern is to assign state values to variables at a higher level, take advantage of how custom properties naturally cascade down, and then consume those variables wherever needed inside the component.

For example, we can define --left and --top per state:

body {
  /* ... */
  &:has([data-state="one"]:checked) {
    --left: 48%;
    --top: 48%;
  }
  &:has([data-state="two"]:checked) {
    --left: 73%;
    --top: 81%;
  }
  /* other states... */
}

Then we simply consume those values on the element itself:

.map::after {
  content: '';
  position: absolute;
  left: var(--left, 50%);
  top: var(--top, 50%);
  /* ... */
}
CodePen Embed Fallback

This keeps state styling centralized, reduces selector repetition, and makes each component class easier to read because it only consumes variables instead of re-implementing state logic.

Use math, not just states

Once we move state into variables, we can also treat state as a number and start doing calculations.

Instead of assigning full visual values for every state, we can define a single numeric variable:

body {
  /* ... */
  &:has([data-state="one"]:checked) { --state: 1; }
  &:has([data-state="two"]:checked) { --state: 2; }
  &:has([data-state="three"]:checked) { --state: 3; }
  &:has([data-state="four"]:checked) { --state: 4; }
  &:has([data-state="five"]:checked) { --state: 5; }
}

Now we can take that value and use it in calculations on any element we want. For example, we can drive the background color directly from the active state:

.card {
  background-color: hsl(calc(var(--state) * 60) 50% 50%);
}

And if we define an index variable like --i per item (at least until sibling-index() is more widely available), we can calculate each item’s style, like position and opacity, relative to the active state and its place in the sequence.

.card {
  position: absolute;
  transform:
    translateX(calc((var(--i) - var(--state)) * 110%))
    scale(calc(1 - (abs(var(--i) - var(--state)) * 0.3)));
  opacity: calc(1 - (abs(var(--i) - var(--state)) * 0.4));
}

This is where the pattern becomes really fun: one --state variable drives an entire visual system. You are no longer writing separate style blocks for every card in every state. You define a rule once, give each item its own index (--i), and let CSS do the rest.

CodePen Embed Fallback

Not every state flow should loop

You may have noticed that unlike the earlier demos, the last example was not circular. Once you reach the last state, you get stuck there. This is because I removed the rule that shows the first radio button when the last one is checked, and instead added a disabled radio button as a placeholder that appears when the last state is active.

<input type="radio" name="state" disabled>

This pattern is useful for progressive flows like onboarding steps, checkout progress, or multi-step setup forms where the final step is a real endpoint. That said, the states are still accessible through keyboard navigation, and that is a good thing, unless you don’t want it to be.

In that case, you can replace the position, pointer-events, and opacity properties with display: none as a default, and display: block (or inline-block, etc.) for the one that should be visible and interactive. This way, the hidden states will not be focusable or reachable by keyboard users, and the flow will be truly linear.

CodePen Embed Fallback

Bi-directional flows

Of course, interaction should not only move forward. Sometimes users need to go back too, so we can add a “Previous” button by also showing the radio button that points to the previous state in the sequence.

To update the CSS so each state reveals not one, but two radio buttons, we need to expand the selectors to target both the next and previous buttons for each state. We select the next button like before, using the adjacent sibling combinator (+), and the previous button using :has() to look for the checked state on the next button (:has(+ :checked)).

input[name="state"] {
  position: fixed;
  pointer-events: none;
  opacity: 0;
  /* other styles */
  
  &:has(+ :checked),
  &:checked + &  {
    position: relative;
    pointer-events: all;
    opacity: 1;
  }

  /* Set text to "Next" as a default */
  &::after {
    content: "Next";
  }

  /* Change text to "Previous" when the next state is checked */
  &:has(+ :checked)::after {
    content: "Previous";
  }
}

This way, users can navigate in either direction through the states.

CodePen Embed Fallback

This is a simple extension of the previous logic, but it gives us much more control over the flow of the state machine, and allows us to create more complex interactions while still keeping the state management in CSS.

Accessibility notes

Before wrapping up, one important reminder: this pattern should stay visual in responsibility, but accessible in behavior. Because the markup is built on real form controls, we already get a strong baseline, but we need to be deliberate about accessibility details:

  • Make the radio buttons clearly interactive (cursor, size, spacing) and keep their wording explicit.
  • Keep visible focus styles so keyboard users can always track where they are.
  • If a step is not available, communicate that state clearly in the UI, not only by color.
  • Respect reduced motion preferences when state changes animate layout or opacity.
  • If state changes carry business meaning (validation, persistence, async data), hand that part to JavaScript and use CSS state as the visual layer.

In short: the radio state machine works best when it enhances interaction, not when it replaces semantics or application logic.

Closing thoughts

The radio state machine is one of those CSS ideas that feels small at first, and then suddenly opens a lot of creative doors.

CodePen Embed Fallback

With a few well-placed inputs, and a couple of smart selectors, we can build interactions that feel alive, expressive, and surprisingly robust, all while keeping visual state close to the layer that actually renders it.

But it is still just that: an idea.

Use it when the state is mostly visual, local, and interaction-driven. Skip it when the flow depends on business rules, external data, persistence, or complex orchestration.

Believe me, if there were a prize for forcing complex state management into CSS just because we technically can, I would have won it long ago. The real win is not proving CSS can do everything, but learning exactly where it shines.

So here is the challenge: pick one tiny UI in your project, rebuild it as a mini state machine, and see what happens. If it becomes cleaner, keep it. If it gets awkward, roll it back with zero guilt. And don’t forget to share your experiments.


The Radio State Machine originally handwritten and published with love on CSS-Tricks. You should really get the newsletter as well.

Restaurant Interior Design: Creating Spaces People Want to Photograph

Post pobrano z: Restaurant Interior Design: Creating Spaces People Want to Photograph

Walk into a restaurant today, and you’re not just entering a dining room. You’re entering a media studio. Every surface, every light fixture, every plate is a potential frame for a social media post. But in 2026, the rules have shifted. The neon signs and fake greenery that defined “Instagrammable” design for years are giving way to something more enduring: spaces that photograph beautifully because they’re authentic, not because they’re designed for a thumbnail.

Here’s how to build a restaurant that works in person and on screen.

The Numbers: Why Design Matters More Than Ever

OpenTable’s recent polling of diners reveals a clear mandate: 58% of diners deem a restaurant’s “Instagram/TikTok worthiness” as important, with 25% saying it’s extremely important. Nearly half (48%) say cozy, local charm is the most appealing interior style, and 54% are willing to pay a premium for a unique vibe.

But here’s the nuance. The Boston Globe reports that diners are experiencing “aesthetic fatigue.” When every restaurant looks like a stage set, nothing feels special. Guests are more cost-conscious and intentional, choosing restaurants that feel personal and authentic rather than performative.

The winning formula isn’t “designed for Instagram.” It’s “designed so well that Instagram loves it.”

The Front of House: Creating Shareable Moments

Entry and First Impressions

The entrance is your handshake. It’s also the first photo opportunity. A strong entry, whether through dramatic lighting, a distinctive door, or a striking material change, signals that this space was designed with intention. This is where the “journey” begins, and it’s where many guests will take their first photo.

The “Third Place” Quality

OpenTable found that 40% of diners consider restaurants, cafes, or bars to be their dedicated “third place” after home and work. This means your design must support lingering. Comfortable seating, varied lighting zones (bright for lunch, dim for dinner), and spaces that work for solo diners, couples, and groups all contribute to this feeling.

The Bathroom Paradox

Here’s a surprising design truth: bathrooms matter enormously. OpenTable’s poll found that 21% of restaurateurs are emphasizing “Instagrammable” bathrooms. Libby Slader, a branding and design firm owner, told the Boston Globe: “We’re still making sure that bathrooms either meet the design or even exceed the design in the restaurant. People really associate the bathroom with the cleanliness and the thought and the detail of the kitchen”.

A thoughtful bathroom, good lighting, interesting materials, a distinctive mirror, becomes a natural selfie spot. More importantly, it signals that attention to detail extends everywhere.

The Acoustic Layer: Designing for Conversation

A beautiful restaurant that’s too loud to talk in is a failure. Noise is consistently cited as one of the most irritating aspects of dining out, with 24% of customers ranking it as their top complaint. The financial impact is real: 80% of surveyed diners reported leaving a restaurant or cafe because of noise, and 91% said they would not return to places where noise levels were very high.

The Science of Sound

Research shows that customers begin to be disturbed by noise at 52 dB(A) and begin raising their voices at 57 dB(A). The willingness to spend time and money decreases starting at 52 dB(A). This triggers the Lombard effect: as ambient noise rises, people speak louder, which raises noise further, creating a stressful feedback loop.

Practical Acoustic Solutions

The Väla Centrum food court renovation offers a model. The design team used extensive acoustic wood wool cladding to reduce sound reflections in the human voice range, making the restaurant area “tranquil and homely”. The materials serve double duty: they improve acoustics while creating visual texture and pattern.

Table Spacing as a Design Tool

An analytical model published in Applied Acoustics demonstrates that proper table spacing can directly attenuate the Lombard effect. The model helps architects calculate minimum distances between tables based on room parameters. For intimate, higher-end concepts, greater spacing isn’t just about comfort, it’s about enabling conversation at normal voice levels, which directly supports higher per-person spending.

The Operational Backbone: Kitchen Workflow

Great design isn’t just what guests see. It’s what they don’t see: a kitchen that works.

Layout Fundamentals

An effective restaurant kitchen layout supports speed, safety, and consistency. The most common configurations include assembly line layouts for high-volume concepts, zone layouts for diverse menus, and galley layouts for narrow spaces.

Key Workstations

Every kitchen needs clear zones: prep stations, cooking stations, plating or pass stations, wash areas, and storage zones. Proper placement of these stations limits cross-traffic and supports a smooth production flow. For fast-casual concepts, linear movement from cooking to assembly to pickup, with minimal cross-traffic between stations, is essential.

Staff Safety

Clear walkways, separation of raw and cooked food paths, and strategic placement of handwashing sinks aren’t just code requirements, they’re design features that affect your team’s ability to work efficiently. Reducing manual handling tasks through automation (like integrated oil management systems) helps protect staff while keeping kitchens running smoothly.

The Professional Approach: Operational Design

The most sophisticated restaurant projects now integrate operational planning from the very first design phase. S&S Studio, a firm launched in late 2025, specializes in what they call “Operational Design”, bridging the gap between space design, brand identity, and daily operations.

This approach considers flow management, kitchen and bar technical design, customer journey mapping, and visual identity as a single, integrated system. The goal: minimize the discrepancy between the original creative intent and the day-to-day reality of running the restaurant.

Budgeting Reality

For restaurant owners planning new locations or renovations, design fees typically range from 50-80 yuan per square meter for mid-tier service to 80-300 yuan for comprehensive full-service design. For full-service projects, design fees generally account for 5-10% of total project costs, with higher percentages for more complex, high-end concepts.

The return on this investment is measurable. Industry data suggests that for every 1 yuan invested in design, the brand value return can be 3-5 yuan. More directly, well-designed spaces see improved staff efficiency (reducing unnecessary movement by up to 30%), higher customer satisfaction, and increased willingness to pay premium prices.

The Bottom Line

Restaurant design in 2026 is a balancing act. It must create “Instagrammable” moments without feeling performative. It must be quiet enough for conversation without feeling empty. It must look beautiful on screen while functioning flawlessly off screen.

The restaurants that succeed aren’t chasing trends. They’re building spaces rooted in authenticity, operational intelligence, and genuine hospitality. The photos will follow.

The post Restaurant Interior Design: Creating Spaces People Want to Photograph appeared first on Designer Daily: graphic and web design blog.

Restaurant Interior Design: Creating Spaces People Want to Photograph

Post pobrano z: Restaurant Interior Design: Creating Spaces People Want to Photograph

Walk into a restaurant today, and you’re not just entering a dining room. You’re entering a media studio. Every surface, every light fixture, every plate is a potential frame for a social media post. But in 2026, the rules have shifted. The neon signs and fake greenery that defined “Instagrammable” design for years are giving way to something more enduring: spaces that photograph beautifully because they’re authentic, not because they’re designed for a thumbnail.

Here’s how to build a restaurant that works in person and on screen.

The Numbers: Why Design Matters More Than Ever

OpenTable’s recent polling of diners reveals a clear mandate: 58% of diners deem a restaurant’s “Instagram/TikTok worthiness” as important, with 25% saying it’s extremely important. Nearly half (48%) say cozy, local charm is the most appealing interior style, and 54% are willing to pay a premium for a unique vibe.

But here’s the nuance. The Boston Globe reports that diners are experiencing “aesthetic fatigue.” When every restaurant looks like a stage set, nothing feels special. Guests are more cost-conscious and intentional, choosing restaurants that feel personal and authentic rather than performative.

The winning formula isn’t “designed for Instagram.” It’s “designed so well that Instagram loves it.”

The Front of House: Creating Shareable Moments

Entry and First Impressions

The entrance is your handshake. It’s also the first photo opportunity. A strong entry, whether through dramatic lighting, a distinctive door, or a striking material change, signals that this space was designed with intention. This is where the “journey” begins, and it’s where many guests will take their first photo.

The “Third Place” Quality

OpenTable found that 40% of diners consider restaurants, cafes, or bars to be their dedicated “third place” after home and work. This means your design must support lingering. Comfortable seating, varied lighting zones (bright for lunch, dim for dinner), and spaces that work for solo diners, couples, and groups all contribute to this feeling.

The Bathroom Paradox

Here’s a surprising design truth: bathrooms matter enormously. OpenTable’s poll found that 21% of restaurateurs are emphasizing “Instagrammable” bathrooms. Libby Slader, a branding and design firm owner, told the Boston Globe: “We’re still making sure that bathrooms either meet the design or even exceed the design in the restaurant. People really associate the bathroom with the cleanliness and the thought and the detail of the kitchen”.

A thoughtful bathroom, good lighting, interesting materials, a distinctive mirror, becomes a natural selfie spot. More importantly, it signals that attention to detail extends everywhere.

The Acoustic Layer: Designing for Conversation

A beautiful restaurant that’s too loud to talk in is a failure. Noise is consistently cited as one of the most irritating aspects of dining out, with 24% of customers ranking it as their top complaint. The financial impact is real: 80% of surveyed diners reported leaving a restaurant or cafe because of noise, and 91% said they would not return to places where noise levels were very high.

The Science of Sound

Research shows that customers begin to be disturbed by noise at 52 dB(A) and begin raising their voices at 57 dB(A). The willingness to spend time and money decreases starting at 52 dB(A). This triggers the Lombard effect: as ambient noise rises, people speak louder, which raises noise further, creating a stressful feedback loop.

Practical Acoustic Solutions

The Väla Centrum food court renovation offers a model. The design team used extensive acoustic wood wool cladding to reduce sound reflections in the human voice range, making the restaurant area “tranquil and homely”. The materials serve double duty: they improve acoustics while creating visual texture and pattern.

Table Spacing as a Design Tool

An analytical model published in Applied Acoustics demonstrates that proper table spacing can directly attenuate the Lombard effect. The model helps architects calculate minimum distances between tables based on room parameters. For intimate, higher-end concepts, greater spacing isn’t just about comfort, it’s about enabling conversation at normal voice levels, which directly supports higher per-person spending.

The Operational Backbone: Kitchen Workflow

Great design isn’t just what guests see. It’s what they don’t see: a kitchen that works.

Layout Fundamentals

An effective restaurant kitchen layout supports speed, safety, and consistency. The most common configurations include assembly line layouts for high-volume concepts, zone layouts for diverse menus, and galley layouts for narrow spaces.

Key Workstations

Every kitchen needs clear zones: prep stations, cooking stations, plating or pass stations, wash areas, and storage zones. Proper placement of these stations limits cross-traffic and supports a smooth production flow. For fast-casual concepts, linear movement from cooking to assembly to pickup, with minimal cross-traffic between stations, is essential.

Staff Safety

Clear walkways, separation of raw and cooked food paths, and strategic placement of handwashing sinks aren’t just code requirements, they’re design features that affect your team’s ability to work efficiently. Reducing manual handling tasks through automation (like integrated oil management systems) helps protect staff while keeping kitchens running smoothly.

The Professional Approach: Operational Design

The most sophisticated restaurant projects now integrate operational planning from the very first design phase. S&S Studio, a firm launched in late 2025, specializes in what they call “Operational Design”, bridging the gap between space design, brand identity, and daily operations.

This approach considers flow management, kitchen and bar technical design, customer journey mapping, and visual identity as a single, integrated system. The goal: minimize the discrepancy between the original creative intent and the day-to-day reality of running the restaurant.

Budgeting Reality

For restaurant owners planning new locations or renovations, design fees typically range from 50-80 yuan per square meter for mid-tier service to 80-300 yuan for comprehensive full-service design. For full-service projects, design fees generally account for 5-10% of total project costs, with higher percentages for more complex, high-end concepts.

The return on this investment is measurable. Industry data suggests that for every 1 yuan invested in design, the brand value return can be 3-5 yuan. More directly, well-designed spaces see improved staff efficiency (reducing unnecessary movement by up to 30%), higher customer satisfaction, and increased willingness to pay premium prices.

The Bottom Line

Restaurant design in 2026 is a balancing act. It must create “Instagrammable” moments without feeling performative. It must be quiet enough for conversation without feeling empty. It must look beautiful on screen while functioning flawlessly off screen.

The restaurants that succeed aren’t chasing trends. They’re building spaces rooted in authenticity, operational intelligence, and genuine hospitality. The photos will follow.

The post Restaurant Interior Design: Creating Spaces People Want to Photograph appeared first on Designer Daily: graphic and web design blog.

Working From Home? Here’s How to Design an Office That Works for You

Post pobrano z: Working From Home? Here’s How to Design an Office That Works for You

The transition to remote work has transformed the spare bedroom, the kitchen corner, and even the hallway into the modern executive suite. While the flexibility of working from home is undeniable, the physical reality often leaves much to be desired. If you are struggling with a dining table that hurts your back or a cluttered living room that makes it impossible to focus, it is time to rethink your environment.

Designing a workspace that actually works for you is not just about aesthetics; it is about ergonomics, productivity, and setting professional boundaries. Whether you have a dedicated room or a shared living space, creating a zone that separates “work mode” from “home mode” is the key to long-term success.

Ergonomics: The Foundation of Productivity

The most common mistake remote workers make is prioritizing style over support. If you are sitting on a kitchen chair for eight hours a day, you are likely sacrificing your posture and energy levels.

Your chair should be the first investment you make. Look for an adjustable office chair that provides lumbar support, allowing you to keep your feet flat on the floor and your knees at a 90-degree angle. Couple this with a desk at the correct height—your elbows should be level with your keyboard—to prevent repetitive strain injuries. If you find yourself slouching by mid-afternoon, consider a standing desk or a sit-stand converter to keep your blood flowing and your mind sharp.

Mastering Small Spaces with Clever Solutions

Not everyone has the luxury of a dedicated office. For those living in apartments or smaller homes, every square inch counts. This is where clever, space-saving furniture becomes essential.

If you are struggling to find a permanent spot for a desk, consider installing a wall mounted drop down desk. These innovative pieces of furniture are game-changers for compact living. When the workday begins, you simply fold the desk down to create a stable, ergonomic workspace. Once the clock strikes five, you fold it back up against the wall, effectively “hiding” your office and reclaiming your living space. It is the perfect solution for maintaining a psychological separation between your professional and personal life without permanently sacrificing floor space.

Lighting and Air Quality

Your physical environment has a profound impact on your cognitive function. Poor lighting, specifically harsh overhead fluorescent glare, can lead to eye strain and afternoon fatigue.

Whenever possible, position your workstation near a window to take advantage of natural light. Not only does natural light boost your mood, but it also helps regulate your circadian rhythm. If your workspace lacks natural light, invest in a high-quality desk lamp with adjustable color temperatures. Use cooler, blue-toned light for focus-heavy tasks during the day, and switch to warmer tones as you wind down.

Additionally, do not overlook the importance of air quality. A well-ventilated room keeps oxygen levels up, helping you avoid that mid-day “brain fog.” If your office is an interior room without windows, consider adding air-purifying indoor plants. Species like Snake Plants or ZZ plants are low-maintenance and can improve both the air quality and the visual appeal of your desk setup.

Defining Your Boundaries

Designing an office that works for you is as much about boundaries as it is about furniture. When you work where you live, the lines often blur, leading to burnout.

If you have a dedicated room, use it to your advantage by physically closing the door when the day is done. If you are using a multifunctional area, use visual cues to signal the start and end of the day. Using a specific desk lamp that only stays on during working hours, or even keeping your laptop in a drawer after 6:00 PM, helps your brain understand when it is time to switch off.

Personalize Your Space

Finally, remember that this is your office. While it needs to be functional, it should also be a space where you feel motivated and comfortable. Incorporate elements that bring you joy—whether that is a piece of art that inspires you, a high-quality rug to warm up the floor, or a personalized organizational system that keeps your files in check.

A well-designed home office is an investment in your career and your well-being. By combining ergonomic essentials, space-saving tools like a wall-mounted drop-down desk, and intentional boundaries, you can build a workspace that allows you to perform your best work while enjoying the comforts of home. Start small, assess your pain points, and build a layout that truly supports your daily workflow.

The post Working From Home? Here’s How to Design an Office That Works for You appeared first on Designer Daily: graphic and web design blog.

Working From Home? Here’s How to Design an Office That Works for You

Post pobrano z: Working From Home? Here’s How to Design an Office That Works for You

The transition to remote work has transformed the spare bedroom, the kitchen corner, and even the hallway into the modern executive suite. While the flexibility of working from home is undeniable, the physical reality often leaves much to be desired. If you are struggling with a dining table that hurts your back or a cluttered living room that makes it impossible to focus, it is time to rethink your environment.

Designing a workspace that actually works for you is not just about aesthetics; it is about ergonomics, productivity, and setting professional boundaries. Whether you have a dedicated room or a shared living space, creating a zone that separates “work mode” from “home mode” is the key to long-term success.

Ergonomics: The Foundation of Productivity

The most common mistake remote workers make is prioritizing style over support. If you are sitting on a kitchen chair for eight hours a day, you are likely sacrificing your posture and energy levels.

Your chair should be the first investment you make. Look for an adjustable office chair that provides lumbar support, allowing you to keep your feet flat on the floor and your knees at a 90-degree angle. Couple this with a desk at the correct height—your elbows should be level with your keyboard—to prevent repetitive strain injuries. If you find yourself slouching by mid-afternoon, consider a standing desk or a sit-stand converter to keep your blood flowing and your mind sharp.

Mastering Small Spaces with Clever Solutions

Not everyone has the luxury of a dedicated office. For those living in apartments or smaller homes, every square inch counts. This is where clever, space-saving furniture becomes essential.

If you are struggling to find a permanent spot for a desk, consider installing a wall mounted drop down desk. These innovative pieces of furniture are game-changers for compact living. When the workday begins, you simply fold the desk down to create a stable, ergonomic workspace. Once the clock strikes five, you fold it back up against the wall, effectively “hiding” your office and reclaiming your living space. It is the perfect solution for maintaining a psychological separation between your professional and personal life without permanently sacrificing floor space.

Lighting and Air Quality

Your physical environment has a profound impact on your cognitive function. Poor lighting, specifically harsh overhead fluorescent glare, can lead to eye strain and afternoon fatigue.

Whenever possible, position your workstation near a window to take advantage of natural light. Not only does natural light boost your mood, but it also helps regulate your circadian rhythm. If your workspace lacks natural light, invest in a high-quality desk lamp with adjustable color temperatures. Use cooler, blue-toned light for focus-heavy tasks during the day, and switch to warmer tones as you wind down.

Additionally, do not overlook the importance of air quality. A well-ventilated room keeps oxygen levels up, helping you avoid that mid-day “brain fog.” If your office is an interior room without windows, consider adding air-purifying indoor plants. Species like Snake Plants or ZZ plants are low-maintenance and can improve both the air quality and the visual appeal of your desk setup.

Defining Your Boundaries

Designing an office that works for you is as much about boundaries as it is about furniture. When you work where you live, the lines often blur, leading to burnout.

If you have a dedicated room, use it to your advantage by physically closing the door when the day is done. If you are using a multifunctional area, use visual cues to signal the start and end of the day. Using a specific desk lamp that only stays on during working hours, or even keeping your laptop in a drawer after 6:00 PM, helps your brain understand when it is time to switch off.

Personalize Your Space

Finally, remember that this is your office. While it needs to be functional, it should also be a space where you feel motivated and comfortable. Incorporate elements that bring you joy—whether that is a piece of art that inspires you, a high-quality rug to warm up the floor, or a personalized organizational system that keeps your files in check.

A well-designed home office is an investment in your career and your well-being. By combining ergonomic essentials, space-saving tools like a wall-mounted drop-down desk, and intentional boundaries, you can build a workspace that allows you to perform your best work while enjoying the comforts of home. Start small, assess your pain points, and build a layout that truly supports your daily workflow.

The post Working From Home? Here’s How to Design an Office That Works for You appeared first on Designer Daily: graphic and web design blog.