DEV Community

Geoff Rich
Geoff Rich

Posted on • Originally published at geoffrich.net

How to use Svelte's style directive

Svelte 3.46 released a new feature: style directives! In this post I'll show you how to use them and the advantages they have over setting the style attribute directly.

The style attribute

A common strategy for writing dynamic styles in Svelte is to apply the styles directly as an attribute. For example, here's how you can make a box move around the screen with a couple of range sliders.

<script>
  let xPos = 50;
  let yPos = 50;
</script>

<label for="positionX">X </label>
<input id="positionX" type="range" bind:value="{xPos}" />

<label for="positionY">Y </label>
<input id="positionY" type="range" bind:value="{yPos}" />

<div class="box" style="left: {xPos}%; top: {yPos}%">
  ({xPos}, {yPos})
</div>

<style>
  .box {
    height: 80px;
    width: 80px;
    background: pink;
    position: absolute;
  }
</style>
Enter fullscreen mode Exit fullscreen mode

The key part here is style="left: {xPos}%; top: {yPos}%" on the div, which takes the xPos and yPos state variables and sets the element's styles accordingly.

This works well, but can get awkward as you add more properties, especially if those properties are conditionally applied. For instance, look at the following example from the style directive RFC:

<div
  style="
    position: {position};
    {position === 'absolute' ? 'top: 20px;' : ''}
    {pointerEvents === false ? 'pointer-events: none;' : ''}
  "
></div>
Enter fullscreen mode Exit fullscreen mode

It would be easy to forget a semicolon or mishandle a ternary statement and break your dynamic styles. Enter: style directives! 🕺

Style directives

In Svelte, a style directive is an attribute applied to an element in the format style:property={value}, where property is a CSS property name and value is the value of that property. By using style directives, you don't need to worry about properly formatting the CSS string, since you set individual properties instead. If you're using Svelte 3.46 or later, the above example can be rewritten like so to use style directives:

<div
  style:position="absolute"
  style:top={position === 'absolute' ? '20px' : null}
  style:pointer-events={pointerEvents ? null : 'none'}
></div>
Enter fullscreen mode Exit fullscreen mode

And the sliding box example can be written like this:

<div class="box" style:left="{xPos}%" style:top="{yPos}%">
  ({xPos}, {yPos})
</div>
Enter fullscreen mode Exit fullscreen mode

This is about the same amount of code, but is easier to understand and less prone to errors from writing an invalid CSS string.

You can use style directives with any CSS property, including CSS custom property definitions.

<div style:--super-cool-custom-property="orange"></div>
Enter fullscreen mode Exit fullscreen mode

There's also a shorter syntax available if your variable has the same name as the CSS property you're setting. The below two are equivalent:

<div style:color={color}></div>
<div style:color></div>
Enter fullscreen mode Exit fullscreen mode

In the case when the style attribute and style directive set the same properties, the style directive will take precedence.

<div style="margin-top: 1rem; color: red" style:color="blue">
  I will have 1rem top margin and my color is blue.
</div>
Enter fullscreen mode Exit fullscreen mode

Style optimizations

By using style directives, you also make sure that Svelte will update the element's styles in an optimal way. This was also possible with the style attribute, but it was easy to accidentally opt-out of the optimization.

Let's look again at the sliding box example.

<div class="box" style="left: {xPos}%; top: {yPos}%">
  ({xPos}, {yPos})
</div>
Enter fullscreen mode Exit fullscreen mode

When you compile this component, it turns into two calls to setProperty:

div.style.setProperty('left', xPos + '%');
div.style.setProperty('top', yPos + '%');
Enter fullscreen mode Exit fullscreen mode

(If you're ever curious what your Svelte component code turns into, the "JS output" tab of the REPL is a great place to start.)

Svelte performs some clever optimization here and will only set the property that changes. So, if only xPos changes, Svelte will only call setProperty('left', xPos + '%'), and not update top. This makes the style updates more efficient.

However, when using the style attribute, it is easy to accidentally opt-out of this optimization. If you construct the style attribute outside of the template, Svelte can't easily determine how to optimize it and won't try. Instead, it will set the entire style attribute when either variable is updated. So given this code...

<script>
    let xPos = 50;
    let yPos = 50;

    $: boxStyle = `left: ${xPos}%; top: ${yPos}%`;
</script>

<div class="box" style={boxStyle}>
    ({xPos}, {yPos})
</div>
Enter fullscreen mode Exit fullscreen mode

...Svelte won't set left and top individually, and instead sets the entire style attribute every time xPos or yPos changes:

div.setAttribute(style, boxStyle);
Enter fullscreen mode Exit fullscreen mode

Per the original PR that added this optimization, this will almost always be slower than setting the individual properties. So, it's better to construct the style attribute directly in the template so that Svelte can optimize it.

However, with style directives, you don't need to think about any of this! Since each style directive corresponds to a single CSS property, it's easy for Svelte to make those same optimizations, even if the value comes from the <script> block.

<script>
    let xPos = 50;
    let yPos = 50;

    $: left = `${xPos}%`;
    $: top = `${yPos}%`;
</script>

<!-- This is optimized the same way as the original example -->
<div class="box" style:left style:top>
    ({xPos}, {yPos})
</div>
Enter fullscreen mode Exit fullscreen mode

By using style directives, you make sure that your dynamic styles are applied in an optimized way without needing to think about it.

Limitations

Style directives are great, but they have a few limitations.

Exclusive to elements: Like most Svelte directives (with the exception of on:), this does not work on components. There is an open RFC to allow forwarding directives to components, which would include style directives. However, this RFC has not been accepted at time of writing.

Shorthand only works with dash-less properties: Since the property used in the style directive uses the same name as the equivalent CSS property, you can't use the shorthand with properties that contain a dash. This is because you can't use - in a JavaScript variable (e.g., you can't declare a variable with the name border-color).

<!-- This is valid -->
<div style:border-color={borderColor></div>
<!-- This is not valid -->
<div style:border-color></div>
Enter fullscreen mode Exit fullscreen mode

No camel case: Some comments on the original RFC suggested allowing the camel-cased property as well (e.g. style:borderColor), but that suggestion was not accepted. The reasoning was that it's more consistent with the rest of Svelte. For example, you need to do the same with class directives:

<div class:is-active={isActive}>
Enter fullscreen mode Exit fullscreen mode

No style object: Unlike React, you can't pass an object of styles to the style attribute: it needs to be a string. If you do want to do this, it would be fairly simple to solve in userland.

Should you use the style directive for everything?

You shouldn't use style directives for all of your component styles. I would avoid using it if your styles are purely static. For example, there is no need to use style directives on the following component:

<div class="box" style:background-color="red" style:height="100px"></div>
Enter fullscreen mode Exit fullscreen mode

It would be better to put these styles in the style block of the component instead:

<div class="box"></div>

<style>
    .box {
        background-color: red;
        height: 100px;
    }
</style>
Enter fullscreen mode Exit fullscreen mode

This is better for performance, since everything in <style> is compiled to pure CSS without using any JavaScript to apply the styles. I would only use the style attribute and style directives for styles where the values are changing or are supplied from outside the component.

Wrapping up

This feature doesn't enable anything you couldn't do before, but it's a nice bit of syntactic sugar that helps ensure your inline styles are optimized. Go forth and style!

Top comments (2)

Collapse
 
auroratide profile image
Timothy Foster

Nice, I was just wishing for something like this last week 😊

Collapse
 
diogenesofweb profile image
Dmytro

Definitely see myself using the directive, especially with CSS custom properties. Thanks for sharing.