New Front-End Features For Designers In 2025<\/h1>\nCosima Mielke<\/address>\n 2024-12-31T12:00:00+00:00
\n 2025-03-06T17:04:34+00:00
\n <\/header>\n
Component-specific styling, styling parents based on their children, relative colors \u2014 the web platform is going through exciting times<\/strong>, and many things that required JavaScript in the past can today be achieved with one simple line of HTML and CSS<\/strong>.<\/p>\nAs we are moving towards 2025, it\u2019s a good time to revisit some of the incredible new technologies<\/strong> that are broadly available and supported in modern browsers today. Let\u2019s dive right in and explore how they can simplify your day-to-day work and help you build modern UI components.<\/p>\nTable of Contents<\/h3>\n
Below you\u2019ll find quick jumps to topics you may be interested in, or skip the table of contents<\/a>.<\/p>\n\n- anchor-positioning<\/a><\/li>\n
- auto field-sizing<\/a><\/li>\n
- container queries<\/a><\/li>\n
<dialog><\/code><\/a><\/li>\n- exclusive accordions<\/a><\/li>\n
:focus-visible<\/code><\/a><\/li>\n:has<\/code><\/a><\/li>\nhidden=until-found<\/code><\/a><\/li>\n- high-definition colors<\/a><\/li>\n
<hr><\/code> in select<\/a><\/li>\ninputmode<\/code><\/a><\/li>\nmin()<\/code>, max()<\/code>, clamp()<\/code><\/a><\/li>\n- relative colors<\/a><\/li>\n
- responsive videos<\/a><\/li>\n
- scroll behavior<\/a><\/li>\n
- scroll snap<\/a><\/li>\n
text-wrap: balance<\/code><\/a><\/li>\n:user-valid<\/code> and :user-invalid<\/code><\/a><\/li>\n- View Transitions API<\/a><\/li>\n<\/ul>\n
CSS Container Queries And Style Queries<\/h2>\n
Component-specific styling<\/strong>? What has long sounded like a dream to any developer, is slowly but surely becoming reality. Thanks to container queries, we can now query the width and style of the container in which components live.<\/p>\n<\/p>\n <\/p>\n
<\/p>\n
<\/a>\n Style queries<\/a> give us more logical control of styles in CSS. (Large preview<\/a>)
\n <\/figcaption><\/figure>\nAs Una Kravets points out in her introduction to style queries<\/a>, this currently only works with CSS custom property values, but there are already some real-world use cases where style queries shine: They come in particularly handy when you have a reusable component with multiple variations<\/strong> or when you don\u2019t have control over all of your styles but need to apply changes in certain cases.<\/p>\nIf you want to dive deeper into what\u2019s possible with container style queries and the things we can \u2014 maybe \u2014 look forward to in the future, also be sure to take a look at Geoff Graham\u2019s post<\/a>. He dug deep into the more nuanced aspects of style queries<\/strong> and summarized the things that stood out to him.<\/p>\nNo More Typographic Orphans And Widows<\/h2>\n
We all know those headlines where the last word breaks onto a new line and stands there alone, breaking the visual and looking, well, odd. Of course, there\u2019s the good ol\u2019 <br><\/code> to break the text manually or a <span><\/code> to divide the content into different parts<\/strong>. But have you heard of text-wrap: balance<\/code> already?<\/p>\n<\/p>\n <\/p>\n
<\/p>\n
<\/a>\n No more odd line breaks, thanks to text-wrap: balance<\/code><\/a>. (Large preview<\/a>)
\n <\/figcaption><\/figure>\nBy applying the text-wrap: balance<\/code> property, the browser will automatically calculate the number of words<\/strong> and divide them equally between two lines \u2014 perfect for page titles<\/strong>, card titles, tooltips, modals, and FAQs, for example. Ahmad Shadeed wrote a helpful guide to text-wrap: balance<\/code><\/a> in which he takes a detailed look at the property and how it can help you make your headlines look more consistent.<\/p>\nWhen dealing with large blocks of text, such as paragraphs<\/strong>, you might want to look into text-wrap: pretty<\/code> to prevent orphans on the last line<\/a>.<\/p>\nAuto Field-Sizing For Forms<\/h2>\n
Finding just the right size for an input field usually involves a lot of guesswork \u2014 or JavaScript \u2014 to count characters and increase the field\u2019s height or width as a user enters text. CSS field-sizing<\/code> is here to change that. With field-sizing, we can auto-grow inputs and text areas<\/strong>, but also auto-shrink short select menus, so the form always fits content size perfectly. All we need to make it happen is one line of CSS.<\/p>\n<\/p>\n <\/p>\n
<\/p>\n
<\/a>\n Auto field-sizing<\/a> allows us to automatically grow or shrink inputs and text areas depending on the content size. (Large preview<\/a>)
\n <\/figcaption><\/figure>\nAdam Argyle summarized everything you need to know about field-sizing<\/a>, exploring in detail how field-sizing<\/code> affects different <form><\/code> elements. To prevent your input fields from becoming too small or too large, it is also a good idea to insert some additional styles<\/strong> that keep them in shape. Adam shares a code snippet that you can copy-and-paste right away.<\/p>\nMaking Hidden Content Searchable<\/h2>\n
Accordions are a popular UI pattern, but they come with a caveat: The content inside the collapsed sections is impossible to search with find-in-page search<\/strong>. By using the hidden=until-found<\/code> attribute and the beforematch<\/code> event, we can solve the problem and even make the content accessible to search engines.<\/p>\n<\/p>\n <\/p>\n
<\/p>\n
<\/a>\n hidden=until-found<\/code><\/a> makes hidden content in accordions searchable. (Large preview<\/a>)
\n <\/figcaption><\/figure>\nAs Joey Arhar explains in his guide to making collapsed content searchable<\/a>, you can replace the styles that hide the section<\/strong> with the hidden=until-found<\/code> attribute. If your page also has another state that needs to be kept in sync with whether or not your section is revealed, he recommends adding a beforematch<\/code> event listener. It will be fired on the hidden=until-found<\/code> element right before the element is revealed by the browser.<\/p>\nStyling Groups Within Select Menus<\/h2>\n
It\u2019s a small upgrade for the <select><\/code> element, but a mighty one: We can now add <hr><\/code> into the list of select options, and they will appear as separators<\/a> to help visually break up the options<\/strong> in the list.<\/p>\n<\/p>\n <\/p>\n
<\/p>\n
<\/a>\n Perfect when your select menu has a lot of options: It\u2019s now possible to group content<\/a>. (Large preview<\/a>)
\n <\/figcaption><\/figure>\nIf you want to refine things further, also be sure to take a look at <optgroup><\/code>. The HTML element lets you group options within a <select><\/code> element<\/a> by adding a subheading<\/strong> for each group.<\/p>\nSimpler Snapping For Scrollable Containers<\/h2>\n
Sometimes, you need a quick and easy way to make an element a scrollable container. CSS scroll snap makes it possible. The CSS feature enables us to create a well-controlled scrolling experience<\/strong> that lets users precisely swipe left and right and snap to a specific item in the container. No JavaScript required.<\/p>\n<\/p>\n <\/p>\n
<\/p>\n
<\/a>\n Have you ever wished there was a CSS feature that makes it easy to create a scrollable container? CSS scroll snap<\/a> is here to help. (Large preview<\/a>)
\n <\/figcaption><\/figure>\nAhmad Shadeed wrote a practical guide<\/a> that walks you step by step through the process of setting up a container with scroll snap. You can use it to create image galleries<\/strong>, avatar lists, or other components where you want a user to scroll and snap through the content, whether it\u2019s horizontally or vertically.<\/p>\nAnchor Positioning For Tooltips And Popovers<\/h2>\n
Whether you use it for footnotes, tooltips, connector lines, visual cross-referencing, or dynamic labels in charts, the CSS Anchor Positioning API enables us to natively position elements relative to other elements<\/strong>, known as anchors<\/em>.<\/p>\n<\/p>\n <\/p>\n
<\/p>\n
<\/a>\n The CSS Anchor Positioning API<\/a> helps us create layered interfaces without any third-party libraries. (Large preview<\/a>)
\n <\/figcaption><\/figure>\nIn her introduction to the CSS Anchor Positioning API<\/a>, Una Kravets summarized in detail how anchor positioning works. She takes a closer look at the mechanism behind anchor positioning, how to tether to one and multiple anchors<\/strong>, and how to size and position an anchor-positioned element based on the size of its anchor. Browser support is still limited, so you might want to use the API with some precautions. Una\u2019s guide includes what to watch out for.<\/p>\n<\/div>\nHigh-Definition Colors With OKLCH And OKLAB<\/h2>\n
With high-definition colors with LCH, okLCH, LAB, and okLAB that give us access to 50% more colors<\/strong>, the times of RGB\/HSL might be over soon. To get you familiar with the new color spaces, Vitaly wrote a quick overview of what you need to know<\/a>.<\/p>\n<\/p>\n <\/p>\n
<\/p>\n
<\/a>\n The times of RGB\/HSL might be over soon. Say hello to high-definition colors<\/a>. (Large preview<\/a>)
\n <\/figcaption><\/figure>\nBoth OKLCH and OKLAB are based on human perception and can specify any color the human eye can see. While OKLAB works best for rich gradients, OKLCH is a fantastic fit for color palettes in design systems<\/strong>. OKLCH\/OKLAB colors are fully supported in Chrome, Edge, Safari, Firefox, and Opera. Figma doesn\u2019t support them yet.<\/p>\nRelative Colors In CSS<\/h2>\n
Let\u2019s say you have a background color and want to reduce its luminosity<\/strong> by 25%, or you want to use a complementary color without having to calculate it yourself. The relative color syntax (RCS) makes it possible to create a new color based on a given color.<\/p>\n<\/p>\n <\/p>\n
<\/p>\n
<\/a>\n Relative colors<\/a> allow us to automatically calculate a new color based on an existing color. (Large preview<\/a>)
\n <\/figcaption><\/figure>\nTo derive and compute a new color, we can use the from<\/code> keyword for color functions (color()<\/code>, hsl()<\/code>, oklch()<\/code>, etc.) to modify the values of the input color<\/strong>. Adam Argyle shares some code snippets<\/a> of what this looks like in practice, or check the spec<\/a> for more details.<\/p>\nSmooth Transitions With The View Transitions API<\/h2>\n
There are a number of use cases where a smooth visual transition can make the user experience more engaging. When a thumbnail image on a product listing page transitions into a full-size image on the product detail page, for example, or when you have a fixed navigation bar<\/strong> that stays in place as you navigate from one page to another. The View Transitions API helps us create seamless visual transitions between different views on a site.<\/p>\n<\/p>\n <\/p>\n
<\/p>\n
<\/a>\n The View Transitions API<\/a> creates seamless visual transitions between different views. (Large preview<\/a>)
\n <\/figcaption><\/figure>\nView transitions can be triggered not only on a single document but also between two different documents<\/strong>. Both rely on the same principle: The browser takes snapshots of the old and new states, the DOM gets updated while rendering is suppressed, and the transitions are powered by CSS Animations. The only difference lies in how you trigger them, as Bramus Van Damme explains in his guide to the View Transitions API<\/a>. A good alternative to single page apps<\/a> that often rely on heavy JavaScript frameworks.<\/p>\nExclusive Accordions<\/h2>\n
The \u2018exclusive accordion\u2019 is a variation of the accordion component. It only allows one disclosure widget to be open at the same time, so when a user opens a new one, the one that is already open will be closed automatically<\/strong> to save space. Thanks to CSS, we can now create the effect without a single line of JavaScript.<\/p>\n<\/p>\n <\/p>\n
<\/p>\n
<\/a>\n An exclusive accordion<\/a> automatically closes a disclosure widget when a new one is opened. (Large preview<\/a>)
\n <\/figcaption><\/figure>\nTo build an exclusive accordion, we need to add a name<\/code> attribute to the <details><\/code> elements. When this attribute is used, all <details><\/code> elements that have the same name<\/code> value form a semantic group<\/strong> and behave as an exclusive accordion. Bramus Van Damme summarized in detail how it works<\/a>.<\/p>\nLive And Late Validation<\/h2>\n
When we use :valid<\/code> and :invalid<\/code> to apply styling based on a user\u2019s input, there\u2019s a downside: a form control that is required and empty<\/strong> will match :invalid<\/code> even if a user hasn\u2019t started interacting with it yet. To prevent this from happening, we usually had to write stateful code that keeps track of input a user has changed. But not anymore.<\/p>\n<\/p>\n <\/p>\n
<\/p>\n
<\/a>\n :user-valid<\/code> and :user-invalid<\/code><\/a> improve the user experience of input validation. (Large preview<\/a>)
\n <\/figcaption><\/figure>\nWith :user-valid<\/code> and :user-invalid<\/code>, we now have a native CSS solution that handles all of this automatically<\/a>. Contrary to :valid<\/code> and :invalid<\/code>, the :user-valid<\/code> and :user-invalid<\/code> pseudo-classes give users feedback about mistakes only after they have changed the input<\/strong>. :user-valid<\/code> and :user-invalid<\/code> work with input, select, and textarea controls.<\/p>\nSmooth Scrolling Behavior<\/h2>\n
Imagine you have a scrolling box and a series of links that target an anchored position<\/strong> inside the box. When a user clicks on one of the links, it will take them to the content section inside the scrolling box \u2014 with a rather abrupt jump. The scroll-behavior<\/code> property<\/a> makes the scrolling transition a lot smoother, only with CSS.<\/p>\n<\/p>\n
\n 2025-03-06T17:04:34+00:00
\n <\/header>\n
As we are moving towards 2025, it\u2019s a good time to revisit some of the incredible new technologies<\/strong> that are broadly available and supported in modern browsers today. Let\u2019s dive right in and explore how they can simplify your day-to-day work and help you build modern UI components.<\/p>\n Below you\u2019ll find quick jumps to topics you may be interested in, or skip the table of contents<\/a>.<\/p>\n Component-specific styling<\/strong>? What has long sounded like a dream to any developer, is slowly but surely becoming reality. Thanks to container queries, we can now query the width and style of the container in which components live.<\/p>\n <\/p>\n <\/a> As Una Kravets points out in her introduction to style queries<\/a>, this currently only works with CSS custom property values, but there are already some real-world use cases where style queries shine: They come in particularly handy when you have a reusable component with multiple variations<\/strong> or when you don\u2019t have control over all of your styles but need to apply changes in certain cases.<\/p>\n If you want to dive deeper into what\u2019s possible with container style queries and the things we can \u2014 maybe \u2014 look forward to in the future, also be sure to take a look at Geoff Graham\u2019s post<\/a>. He dug deep into the more nuanced aspects of style queries<\/strong> and summarized the things that stood out to him.<\/p>\n We all know those headlines where the last word breaks onto a new line and stands there alone, breaking the visual and looking, well, odd. Of course, there\u2019s the good ol\u2019 <\/p>\n <\/a> By applying the When dealing with large blocks of text, such as paragraphs<\/strong>, you might want to look into Finding just the right size for an input field usually involves a lot of guesswork \u2014 or JavaScript \u2014 to count characters and increase the field\u2019s height or width as a user enters text. CSS <\/p>\n <\/a> Adam Argyle summarized everything you need to know about field-sizing<\/a>, exploring in detail how Accordions are a popular UI pattern, but they come with a caveat: The content inside the collapsed sections is impossible to search with find-in-page search<\/strong>. By using the <\/p>\n <\/a> As Joey Arhar explains in his guide to making collapsed content searchable<\/a>, you can replace the styles that hide the section<\/strong> with the It\u2019s a small upgrade for the <\/p>\n <\/a> If you want to refine things further, also be sure to take a look at Sometimes, you need a quick and easy way to make an element a scrollable container. CSS scroll snap makes it possible. The CSS feature enables us to create a well-controlled scrolling experience<\/strong> that lets users precisely swipe left and right and snap to a specific item in the container. No JavaScript required.<\/p>\n <\/p>\n <\/a> Ahmad Shadeed wrote a practical guide<\/a> that walks you step by step through the process of setting up a container with scroll snap. You can use it to create image galleries<\/strong>, avatar lists, or other components where you want a user to scroll and snap through the content, whether it\u2019s horizontally or vertically.<\/p>\n Whether you use it for footnotes, tooltips, connector lines, visual cross-referencing, or dynamic labels in charts, the CSS Anchor Positioning API enables us to natively position elements relative to other elements<\/strong>, known as anchors<\/em>.<\/p>\n <\/p>\n <\/a> In her introduction to the CSS Anchor Positioning API<\/a>, Una Kravets summarized in detail how anchor positioning works. She takes a closer look at the mechanism behind anchor positioning, how to tether to one and multiple anchors<\/strong>, and how to size and position an anchor-positioned element based on the size of its anchor. Browser support is still limited, so you might want to use the API with some precautions. Una\u2019s guide includes what to watch out for.<\/p>\n With high-definition colors with LCH, okLCH, LAB, and okLAB that give us access to 50% more colors<\/strong>, the times of RGB\/HSL might be over soon. To get you familiar with the new color spaces, Vitaly wrote a quick overview of what you need to know<\/a>.<\/p>\n <\/p>\n <\/a> Both OKLCH and OKLAB are based on human perception and can specify any color the human eye can see. While OKLAB works best for rich gradients, OKLCH is a fantastic fit for color palettes in design systems<\/strong>. OKLCH\/OKLAB colors are fully supported in Chrome, Edge, Safari, Firefox, and Opera. Figma doesn\u2019t support them yet.<\/p>\n Let\u2019s say you have a background color and want to reduce its luminosity<\/strong> by 25%, or you want to use a complementary color without having to calculate it yourself. The relative color syntax (RCS) makes it possible to create a new color based on a given color.<\/p>\n <\/p>\n <\/a> To derive and compute a new color, we can use the There are a number of use cases where a smooth visual transition can make the user experience more engaging. When a thumbnail image on a product listing page transitions into a full-size image on the product detail page, for example, or when you have a fixed navigation bar<\/strong> that stays in place as you navigate from one page to another. The View Transitions API helps us create seamless visual transitions between different views on a site.<\/p>\n <\/p>\n <\/a> View transitions can be triggered not only on a single document but also between two different documents<\/strong>. Both rely on the same principle: The browser takes snapshots of the old and new states, the DOM gets updated while rendering is suppressed, and the transitions are powered by CSS Animations. The only difference lies in how you trigger them, as Bramus Van Damme explains in his guide to the View Transitions API<\/a>. A good alternative to single page apps<\/a> that often rely on heavy JavaScript frameworks.<\/p>\n The \u2018exclusive accordion\u2019 is a variation of the accordion component. It only allows one disclosure widget to be open at the same time, so when a user opens a new one, the one that is already open will be closed automatically<\/strong> to save space. Thanks to CSS, we can now create the effect without a single line of JavaScript.<\/p>\n <\/p>\n <\/a> To build an exclusive accordion, we need to add a When we use <\/p>\n <\/a> With Imagine you have a scrolling box and a series of links that target an anchored position<\/strong> inside the box. When a user clicks on one of the links, it will take them to the content section inside the scrolling box \u2014 with a rather abrupt jump. The Table of Contents<\/h3>\n
\n
<dialog><\/code><\/a><\/li>\n
:focus-visible<\/code><\/a><\/li>\n
:has<\/code><\/a><\/li>\n
hidden=until-found<\/code><\/a><\/li>\n
<hr><\/code> in select<\/a><\/li>\n
inputmode<\/code><\/a><\/li>\n
min()<\/code>,
max()<\/code>,
clamp()<\/code><\/a><\/li>\n
text-wrap: balance<\/code><\/a><\/li>\n
:user-valid<\/code> and
:user-invalid<\/code><\/a><\/li>\n
CSS Container Queries And Style Queries<\/h2>\n
<\/p>\n
\n <\/figcaption><\/figure>\nNo More Typographic Orphans And Widows<\/h2>\n
<br><\/code> to break the text manually or a
<span><\/code> to divide the content into different parts<\/strong>. But have you heard of
text-wrap: balance<\/code> already?<\/p>\n
<\/p>\n
text-wrap: balance<\/code><\/a>. (Large preview<\/a>)
\n <\/figcaption><\/figure>\ntext-wrap: balance<\/code> property, the browser will automatically calculate the number of words<\/strong> and divide them equally between two lines \u2014 perfect for page titles<\/strong>, card titles, tooltips, modals, and FAQs, for example. Ahmad Shadeed wrote a helpful guide to
text-wrap: balance<\/code><\/a> in which he takes a detailed look at the property and how it can help you make your headlines look more consistent.<\/p>\n
text-wrap: pretty<\/code> to prevent orphans on the last line<\/a>.<\/p>\n
Auto Field-Sizing For Forms<\/h2>\n
field-sizing<\/code> is here to change that. With field-sizing, we can auto-grow inputs and text areas<\/strong>, but also auto-shrink short select menus, so the form always fits content size perfectly. All we need to make it happen is one line of CSS.<\/p>\n
<\/p>\n
\n <\/figcaption><\/figure>\nfield-sizing<\/code> affects different
<form><\/code> elements. To prevent your input fields from becoming too small or too large, it is also a good idea to insert some additional styles<\/strong> that keep them in shape. Adam shares a code snippet that you can copy-and-paste right away.<\/p>\n
Making Hidden Content Searchable<\/h2>\n
hidden=until-found<\/code> attribute and the
beforematch<\/code> event, we can solve the problem and even make the content accessible to search engines.<\/p>\n
<\/p>\n
hidden=until-found<\/code><\/a> makes hidden content in accordions searchable. (Large preview<\/a>)
\n <\/figcaption><\/figure>\nhidden=until-found<\/code> attribute. If your page also has another state that needs to be kept in sync with whether or not your section is revealed, he recommends adding a
beforematch<\/code> event listener. It will be fired on the
hidden=until-found<\/code> element right before the element is revealed by the browser.<\/p>\n
Styling Groups Within Select Menus<\/h2>\n
<select><\/code> element, but a mighty one: We can now add
<hr><\/code> into the list of select options, and they will appear as separators<\/a> to help visually break up the options<\/strong> in the list.<\/p>\n
<\/p>\n
\n <\/figcaption><\/figure>\n<optgroup><\/code>. The HTML element lets you group options within a
<select><\/code> element<\/a> by adding a subheading<\/strong> for each group.<\/p>\n
Simpler Snapping For Scrollable Containers<\/h2>\n
<\/p>\n
\n <\/figcaption><\/figure>\nAnchor Positioning For Tooltips And Popovers<\/h2>\n
<\/p>\n
\n <\/figcaption><\/figure>\nHigh-Definition Colors With OKLCH And OKLAB<\/h2>\n
<\/p>\n
\n <\/figcaption><\/figure>\nRelative Colors In CSS<\/h2>\n
<\/p>\n
\n <\/figcaption><\/figure>\nfrom<\/code> keyword for color functions (
color()<\/code>,
hsl()<\/code>,
oklch()<\/code>, etc.) to modify the values of the input color<\/strong>. Adam Argyle shares some code snippets<\/a> of what this looks like in practice, or check the spec<\/a> for more details.<\/p>\n
Smooth Transitions With The View Transitions API<\/h2>\n
<\/p>\n
\n <\/figcaption><\/figure>\nExclusive Accordions<\/h2>\n
<\/p>\n
\n <\/figcaption><\/figure>\nname<\/code> attribute to the
<details><\/code> elements. When this attribute is used, all
<details><\/code> elements that have the same
name<\/code> value form a semantic group<\/strong> and behave as an exclusive accordion. Bramus Van Damme summarized in detail how it works<\/a>.<\/p>\n
Live And Late Validation<\/h2>\n
:valid<\/code> and
:invalid<\/code> to apply styling based on a user\u2019s input, there\u2019s a downside: a form control that is required and empty<\/strong> will match
:invalid<\/code> even if a user hasn\u2019t started interacting with it yet. To prevent this from happening, we usually had to write stateful code that keeps track of input a user has changed. But not anymore.<\/p>\n
<\/p>\n
:user-valid<\/code> and
:user-invalid<\/code><\/a> improve the user experience of input validation. (Large preview<\/a>)
\n <\/figcaption><\/figure>\n:user-valid<\/code> and
:user-invalid<\/code>, we now have a native CSS solution that handles all of this automatically<\/a>. Contrary to
:valid<\/code> and
:invalid<\/code>, the
:user-valid<\/code> and
:user-invalid<\/code> pseudo-classes give users feedback about mistakes only after they have changed the input<\/strong>.
:user-valid<\/code> and
:user-invalid<\/code> work with input, select, and textarea controls.<\/p>\n
Smooth Scrolling Behavior<\/h2>\n
scroll-behavior<\/code> property<\/a> makes the scrolling transition a lot smoother, only with CSS.<\/p>\n