I would like to ask, this method to clear the float, is the mainstream browser enough for ie9 or above?

  ul {
display: table;
content: "";
&:after {// sass less
  clear: both;
}
li {
  float: left;
    }
  }
Sep.09,2021

is compatible enough.
to be written in pseudo elements.

&:after {
    clear: both;
    display: table;
    content: "";
}
Menu