Any CSS for making the first column be static?

Does anyone know how CSS to make the first column of table be static?

Thanks in advance.

2 Likes

What do you mean by static?

He means this, but for horizontal direction.

2 Likes

I once lost access to your library, because it used a long key. This needs to be thought about rather than creating a new one.

That’s the only way it can kind of work without users signing in though.

1 Like
.className td:first-child {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    min-width: 2.0rem !important;
    max-width: 3.0rem !important;
    background: white;
    z-index: 1; 
}
6 Likes

CSS-nya udah bisa dipakai, manstaaap! terima kasih @Himaladin :+1: :pray:

1 Like

Your css-library is a great contribution! @ThinhDinh :+1: :handshake:

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.