Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何仅冻结 Fluent UI 详细信息列表中的第一列?列数超过 40 。因此需要冻结,以便可以使用水平滚动。
没有直接的方法。但是你可以用一些 css hack 来做到这一点。这几乎是不言自明的。
.ms-DetailsRow-cell:first-child, .ms-DetailsHeader-cell:first-child { position: sticky; inset: 0; background-color: white; z-index: 1; }