首页 > 解决方案 > 向左移动内容 Material UI

问题描述

有没有人对 Material UI 下拉选择和 Modals 向左移动内容有疑问?我试图给它 position: absolute 我也试图给 MenuItems position: absolute 但内容仍然移动。

标签: cssreactjsmaterial-ui

解决方案


在我的 React 应用程序中,这对我有用。

<body style="overflow-y: scroll;">
    //index.html
    <!DOCTYPE html>
     <html lang="en">
       <head>
       </head>
       <body style="overflow-y: scroll;">
         <noscript>
         </noscript>
         <div id="root"></div>
         <script></script>
       </body>
     </html>

推荐阅读