首页  >  问答  >  正文

TypeScript 中的 React-Toastify 样式问题 - 无法为 Toast 容器设置 z-index

<p>我目前正在使用 TypeScript 开发 React 应用程序,并集成了 React-Toastify 库来显示通知。</p> <p>但是,我遇到了 ToastContainer 组件的一些样式问题。具体来说,我想将 ToastContainer 的 z-index 设置为 1000,但我尝试使用内联样式执行此操作未成功。</p> <pre class="brush:php;toolbar:false;"><ToastContainer style={{ fontSize: "14px", zIndex: "1000" }} autoClose={2000} hideProgressBar={true} /></pre> <p>尽管将 z-index 设置为 1000,ToastContainer 并未按预期出现在其他元素之上。我还检查了是否有任何其他 CSS 样式影响该组件,但似乎并非如此。</p> <p>我在网上研究了这个问题,并尝试了社区建议的各种解决方案,例如使用全局 CSS 和通过类覆盖样式,但没有一个有效。</p> <p>有人可以指导我如何解决 ToastContainer 组件的样式问题并正确设置 z-index 吗?</p>
P粉529581199P粉529581199440 天前584

全部回复(1)我来回复

  • P粉521013123

    P粉5210131232023-08-29 15:57:46

    这是注入的元素

    <div class="Toastify"></div>

    这是 div 的样式。我没有看到任何 position 设置。如果您添加 position 属性,您的代码应该可以工作

    -webkit-text-size-adjust: 100%;
        tab-size: 4;
        font-feature-settings: normal;
        --toastify-color-light: #fff;
        --toastify-color-dark: #121212;
        --toastify-color-info: #3498db;
        --toastify-color-success: #07bc0c;
        --toastify-color-warning: #f1c40f;
        --toastify-color-error: #e74c3c;
        --toastify-color-transparent: rgba(255, 255, 255, 0.7);
        --toastify-icon-color-info: var(--toastify-color-info);
        --toastify-icon-color-success: var(--toastify-color-success);
        --toastify-icon-color-warning: var(--toastify-color-warning);
        --toastify-icon-color-error: var(--toastify-color-error);
        --toastify-toast-width: 320px;
        --toastify-toast-background: #fff;
        --toastify-toast-min-height: 64px;
        --toastify-toast-max-height: 800px;
        --toastify-font-family: sans-serif;
        --toastify-z-index: 9999;
        --toastify-text-color-light: #757575;
        --toastify-text-color-dark: #fff;
        --toastify-text-color-info: #fff;
        --toastify-text-color-success: #fff;
        --toastify-text-color-warning: #fff;
        --toastify-text-color-error: #fff;
        --toastify-spinner-color: #616161;
        --toastify-spinner-color-empty-area: #e0e0e0;
        --toastify-color-progress-light: linear-gradient(
        to right,
        #4cd964,
        #5ac8fa,
        #007aff,
        #34aadc,
        #5856d6,
        #ff2d55
      );
        --toastify-color-progress-dark: #bb86fc;
        --toastify-color-progress-info: var(--toastify-color-info);
        --toastify-color-progress-success: var(--toastify-color-success);
        --toastify-color-progress-warning: var(--toastify-color-warning);
        --toastify-color-progress-error: var(--toastify-color-error);
        line-height: inherit;
        font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
        Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
        border-width: 0;
        border-style: solid;
        border-color: #e5e7eb;
        --tw-border-spacing-x: 0;
        --tw-border-spacing-y: 0;
        --tw-translate-x: 0;
        --tw-translate-y: 0;
        --tw-rotate: 0;
        --tw-skew-x: 0;
        --tw-skew-y: 0;
        --tw-scale-x: 1;
        --tw-scale-y: 1;
        --tw-pan-x: ;
        --tw-pan-y: ;
        --tw-pinch-zoom: ;
        --tw-scroll-snap-strictness: proximity;
        --tw-ordinal: ;
        --tw-slashed-zero: ;
        --tw-numeric-figure: ;
        --tw-numeric-spacing: ;
        --tw-numeric-fraction: ;
        --tw-ring-inset: ;
        --tw-ring-offset-width: 0px;
        --tw-ring-offset-color: #fff;
        --tw-ring-color: rgb(59 130 246 / 0.5);
        --tw-ring-offset-shadow: 0 0 #0000;
        --tw-ring-shadow: 0 0 #0000;
        --tw-shadow: 0 0 #0000;
        --tw-shadow-colored: 0 0 #0000;
        --tw-blur: ;
        --tw-brightness: ;
        --tw-contrast: ;
        --tw-grayscale: ;
        --tw-hue-rotate: ;
        --tw-invert: ;
        --tw-saturate: ;
        --tw-sepia: ;
        --tw-drop-shadow: ;
        --tw-backdrop-blur: ;
        --tw-backdrop-brightness: ;
        --tw-backdrop-contrast: ;
        --tw-backdrop-grayscale: ;
        --tw-backdrop-hue-rotate: ;
        --tw-backdrop-invert: ;
        --tw-backdrop-opacity: ;
        --tw-backdrop-saturate: ;
        --tw-backdrop-sepia: ;
        box-sizing: border-box;

    回复
    0
  • 取消回复