Re: [csswg-drafts] [css-overflow-3] Clarify padding-bottom in overflow content (#129)

My workaround for fixing this bug in my project was (helpful when you want the children centered with `margin: auto` in a flex container if there is no scroll.):

.overflowing-container > *:last-child:after {
    display: block;
    height: 1rem; /* Match bottom padding */
    margin-bottom: -1rem; /* Move it outside */
    content: "";
}

-- 
GitHub Notification of comment by lucijanblagonic
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/129#issuecomment-540044160 using your GitHub account

Received on Wednesday, 9 October 2019 15:06:41 UTC