0

如何使Fab 按钮完全可见?它的左半部分始终位于左窗格下方。试图增加 z-index,但没有奏效。

密码箱

        <UpperPane>
          <Fab
            style={{
              position: "absolute",
              left: "-25px",
              zIndex: 999
            }}
            color="primary"
            aria-label="add"
          >
            <AddIcon />
          </Fab>
        </UpperPane>        
4

2 回答 2

1

修改 CSS 属性,它将起作用 -

 style={{
          left: "-25px"
       }}

const UpperPane = styled.div`
  height: 100%;
  width: 100%;
  position:fixed; // add this property
  background-color: yellow;
`;

在此处输入图像描述

这里的工作沙箱 - https://codesandbox.io/s/splitpane-rqenw?file=/demo.tsx

于 2020-04-24T08:54:11.900 回答
0

这就是我想要的行为。管理使用突变观察器创建。如果有人有更好的解决方案,非常欢迎:)

沙盒

于 2020-04-24T19:56:09.530 回答