You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's not another one fallback option like column-count, overflow or clearfix. Spec defines flow-root as display: block + new BFC. And display: block part is missed for now. It allows cases like this:
/* before */span {
display: flow-root;
}
/* after "clearfix" fallback */span {
/* if browser doesn't support "flow-root" than "display" will actually have "inline" value, which will mess with pseudo elements */display: flow-root;
}
span::after {
content:'';
display: table;
clear: both;
}
It's not another one fallback option like
column-count
,overflow
orclearfix
. Spec definesflow-root
asdisplay: block
+ new BFC. Anddisplay: block
part is missed for now. It allows cases like this:Instead it should be transformed like this:
The text was updated successfully, but these errors were encountered: