Skip to main content

Am I the only one who’s left wanting by the new position sticky feature?


In my opinion, there are three main problems with the new sticky feature:



  1. It’s not compatible with auto layout



    • SolutionMake the sticky elements always appear on top of other elements (and later add a z-index feature so we can fine tune the behavior)



  2. The sticky element has to be an immediate child of the scrolling container



    • SolutionMake the sticky behavior relative to the closest scroll container instead, so the sticky element can be a grand child, great grand child etc.



  3. Only works for vertical scrolling and can only stick to the top of the container



    • SolutionAdd an offset property (top/right/bottom/left) - like the CSS implementation - super simple, but pretty flexible (only problem with the CSS implementation is the overflow: hidden limitation)






What I want to be able to make


None of which is possible with the new sticky feature unfortunately


HTML prototype





  • Note the sticky footer inside the container

  • Note that the elements stick relative to the window’s scroll position - it doesn’t care that the sticky element is far down the DOM tree

  • Check out the Codepen here


Figma prototype





  • This, only with auto layout


Sticky on larger screens (multiple columns etc + support for sticky in components)




  • I actually am working on a layout a bit like this (two columns with multiple sections in each). Being able to more accurately prototype it would be gold!

  • I would like to be able to create one component for each section. Within that component, I would then like to set the section heading to sticky




Edit: I initially just wanted to start a discussion and rant about how the new position sticky feature was implemented, but as the post was moved from “general discussions” → “share an idea” section, I felt the need to amend my post. I hid the rant below 😛



Just me ranting about how I'm disappointed by the way Figma implemented position sticky

Figma, why do you mock us so? (Position sticky discussion)


Yesterday Figma announced a lot of really nice quality of life improvements in their Little Big Things update. All good stuff, but the only thing that got me personally (very) exited was the position sticky feature.


Am I the only one who’s left utterly disappointed?


I thought Figma were committed to the auto layout feature, so why do they mock us so? Position sticky is in no way compatible with auto layout! (1)


The best I could do with position sticky:




  • Notice the oversized containers (colorized). They have to be that tall to make the element stick beneath the sticky tabs

  • The first element sticks nicely, but it will overlay any other sticky layer below it


They can probably fix this issue by just rendering sticky elements above the rest or something, but there is also another, bigger problem.


Problem 2


The biggest problem with the new sticky feature is a more fundamental implementation detail, which I suspect they won’t fix - thus, making me very pessimistic as to the usefulness of the feature (and it’s future). The problem:



You can only set position sticky if the immediate parent container is a scrolling container



This means that if you want to take advantage of position sticky, you have to have a totally flat layer structure - which again, is not compatible with auto layout! Or even components for that matter! (3)


The fact that the direct parent has to be a scrolling container, has always been the case for fixed elements, which has been an ok limitation (3) since fixed elements are detached from the layout flow.


Sticky elements on the other hand is a part of the layout flow, and is only detached from the flow just before it is scrolled out of the viewport. Them being a part of the layout also means that they has to be part of the auto layout, which is probably several layers deep due to how auto layout works.



Foot notes

(1) This is a bit of an over exaggeration. I know position sticky technically is compatible with auto layout, but due to auto layout’s strict z-index hierarchy everything will overlap the sticky element. “Just switch the canvas stacking”, you say? Then the next sticky element will be overlapped by the first element…


(2) When using auto layout you will end up with a deeper layer structure than you would without. This is because you have to the paddings and gaps on the auto layout containers, and in order to have different spacings, you need more and nested auto layout containers. This is perfectly reasonable and a boon to the structure and organization of files. It also makes the mental model of designing within Figma more like the mental model when writing the code.


(You can maybe get away with a flat auto layout structure on mobile mockups sometimes, but on desktop mockups it’s almost never the case).


(3) It’s been an ok limitation, at least after the position absolute feature was released and we could combine position fixed with auto layout.





Notes


I know that implementing position sticky is probably very tricky. But I think this is one of the cases where doing it right or not doing it at all would have served you better.


Figma has again and again spent the time to do it right, which makes me all the more disappointed this time around. It’s been so exiting to read the Figma blog on why seemingly easy to implement features are anything but.


I suspect there won’t be any such blog posts about position sticky 😦


Anyhow; I just wanted to put this rant out there. Please drop a comment if you agree/disagree. Would be nice to have a discussion about this.


Either way, have a good one! 😃


One important use case of sticky is to stick headers to the top and side in a table. While there are caveats, this is pretty easy to do in html/css, but right now it seems impossible in figma.

Wanted behavior:

  • Top/bottom row(s) stick to the top/bottom of the parent.
  • Left/right columns stick to the left/right side of the parent.

Consider building something like a timetable, where you want the trip number to be on top, and the stops to be on the left. If there’s a lot of trip and stops, the table can be far larger than the viewport, and you don’t want to lose track of which time corresponds to which stop, and likewise which trip each column represents.

Fairly simple to do in html/css, or in just about any spreadsheet application.


Here is my solution. Nasty to setup:

 

 

 

  • If you already have a header that’s sticky or floating, then you have to add that header height to the table header so it sticks below that. 
  • So I added an auto layout to the header with a top padding of 100px. 
  • The header is made sticky (which includes this padding)
  • The auto-layout must be changes so that FIRST ON TOP (under the settings icon next to auto layout).
  • Then it will only stick while the table is being scrolled on the screen. 

 


I can’t believe this feature was released unfinished 2 years ago, and then never updated. Dead features are the plan now?


Reply