将div拉伸到父级的高度

时间:2019-01-19 12:35:05

标签: css reactjs styled-components

我知道这个问题已经被问了很多遍了。

但是,我似乎无法使用推荐的方法来使其正常工作。

为什么Tracking ID似乎被忽略了?

目标是使红色容器填充其下方的可用空间。

CodeSandbox链接here

flex: 1

enter image description here

2 个答案:

答案 0 :(得分:0)

设置中缺少的是主体和布局之间的中间容器的高度。在其中渲染您的应用程序的容器:#root。

在其上增加100%的高度可解决此问题:

const Style = createGlobalStyle`
  body, html {
    height: 100%;
    background: green;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
  }
  #root { //<-- this thingie
    height: 100%;
  }
`;

这是更新的沙箱:https://codesandbox.io/s/xrw84wkw54

答案 1 :(得分:0)

为了将来参考,也可以通过设置Layout的样式并在相关时使用flexGrow来实现。

import React from "react";
import { render } from "react-dom";
import styled, { createGlobalStyle, ThemeProvider } from "styled-components";

const Style = createGlobalStyle`
  body, html {
    height: 100%;
    background: green;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
  }
`;

const FlexCol = styled.div`
  display: flex;
  flex-direction: column;
  flex-grow: 1;
`;

const Layout = ({ children }) => {
  return (
    <div style={{ height: "100vh", display: "flex", flexDirection: "column" }}>
      <Header>header</Header>
      <FlexCol>{children}</FlexCol>
    </div>
  );
};

const Header = styled.div`
  height: 50;
  background: blue;
`;

const Home = () => {
  return (
    <div
      style={{
        height: "100%"
      }}
    >
      <Feed />
    </div>
  );
};

const FeedContainer = styled.div`
  display: flex;
  flex: 1;
  background: red;
  height: 100%;
  width: 100px;
`;

const Feed = () => <FeedContainer>something</FeedContainer>;

const App = () => {
  return (
    <Layout>
      <Home />
    </Layout>
  );
};

render(
  <ThemeProvider theme={{}}>
    <React.Fragment>
      <Style />
      <App />
    </React.Fragment>
  </ThemeProvider>,
  document.getElementById("root")
);

这给出了:

enter image description here