什么是 Bootstrap 4.0+ 相当于“.hidden-size-down/up”

What is the Bootstrap 4.0+ equivalent to ".hidden-size-down/up"

<div class="justify-content-center">
  <p class="hidden-md-down"> TEXT </p>
</div>

BootStrap 过去可以 'hide' 使用“.hidden”调整元素大小。

看来这不再有效了。

什么是 4.0+ 等效项?

Bootstrap 4 有.d-none class。 (official documentation)

要在小于 960 像素的屏幕上隐藏元素,您可以使用 class 的 d-none &d-lg-block

<div class="d-none d-lg-block">hide on screens smaller than lg</div>