我的位置有问题:粘性元素。想法是将粘性布局设置为50%(可在页面上随您滚动),并让用户滚动50%的内容。
在这里找到一个很好的例子(左边保持背景,右边可滚动):https://creatus.io/landings/photographer-portfolio/
在WP上使用WPBakery的Visual Composer,我向50/50行中的列提供了以下代码:
.stickyColumn {
height: 100vh !important;
min-height: inherit !important;
display: block !important;
vertical-align: baseline !important;
float: left !important;
position: sticky !important;
top: 0px;
}
这似乎不起作用。该图像距视口的高度为100%,但不会滚动,仅停留在页面的同一位置。我检查了父项的溢出属性,但我自己却找不到任何东西。
以下是存在问题的网站:https://beunboxd.com/home-issue
我该怎么做才能使左列保持粘性?