Fade Out the Bottom of Any Section With a CSS Overlay

WordPress CSS July 24, 2026

Add a class to that section: .fade-section And then use this code:

.fade-section::before {
    z-index: 100;
    pointer-events: none;
}