- From: Oriol Brufau via GitHub <sysbot+gh@w3.org>
- Date: Fri, 22 Oct 2021 16:09:00 +0000
- To: public-css-archive@w3.org
If you want a BFC but remove the start and end margins of the contents, `margin-trim` has been proposed for this. But otherwise it sounds like you don't actually want BFC, you only want to clear floats. Why not use a "clearfix", then? ```css ul::after { content: ""; display: block; clear: both; } ``` -- GitHub Notification of comment by Loirooriol Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/6752#issuecomment-949767765 using your GitHub account -- Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Friday, 22 October 2021 16:09:02 UTC