antd modal 内容自动滚动

2022-04-28  本文已影响0人  此昵称已被狗抢占
.container {
  width: 100%;
  height: 100%;

  & :global .ant-modal {
    height: 100%;
    overflow: hidden;
  }

  & :global .ant-modal-content {
    position: relative;
    display: flex;
    max-height: 100%;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
    top: 50%;
    transform: translateY(-50%);
  }

  & :global .ant-modal-body {
    position: relative;
    display: flex;
    overflow: auto;
  }
}


<Modal className="container"  centered>
   {/*  ...很长的元素 */}
</Modal>
上一篇 下一篇

猜你喜欢

热点阅读