如何删除 overflow: hidden placed by bootstrap 5 modal?

How to remove overflow: hidden placed by bootstrap 5 modal?

我正在使用 bootstrap 5 作为 React 应用程序。我的问题是,当我打开模态时,每隔一秒就会在正文元素上放置以下样式:style="overflow: hidden; padding-right: 17px;" 以及 class modal-open,这会阻止我向外滚动模式甚至在我关闭它之后。有没有可能避免这个问题?

您可以操作 scc 或 scss 文件中的每个 bootstrap class。只需调用 class 并删除您不想要的样式。在你的情况下你可以设置

.modal{
   overflow: auto !important;
}