所以基本上我在使用 React-Bootstrap 中的 % 设置行/列的高度时遇到了一点问题。我有一个 8 列的行(我要在此处添加一些按钮、图标、图像和文本字段),它们都必须具有相同的高度。
我确实尝试只使用 % 和 height 和 maxHeight 但显然它没有成功。我认为 px 毫无意义,因为它会显示在不同分辨率的屏幕上,所以我担心它会搞砸。我确实下载了 MDBreact 并使用了 'className="h-25 d-inline-block"' 但它也没有工作。
<Container md={12} style={{backgroundColor: "red", margin:"0px", maxWidth: "100%", maxHeight: "85%", height: "85%"}}>
<Row>
<Col className="h-25 d-inline-block" style={{backgroundColor: "yellow"}}>Machine 11</Col>
<Col style={{backgroundColor: "pink"}}> Machine 21</Col>
<Col style={{backgroundColor: "blue"}}> Machine 31</Col>
<Col style={{backgroundColor: "purple"}}> Machine 41</Col>
<Col style={{backgroundColor: "gray"}}> Machine 51</Col>
<Col style={{backgroundColor: "red"}}> Machine 61</Col>
<Col style={{backgroundColor: "pink"}}> Machine 71</Col>
<Col style={{backgroundColor: "magenta"}}> Machine 81</Col>
</Row>
</Container>
我确实希望列的高度同样设置为 20/25%(已经制作了 3 行 + 导航栏),但除了我用像素做它之外,我几乎什么也没得到,但它没有抓住重点。