so basically I have a little problem with setting up a height of Row/Cols using the % in React-Bootstrap. I have a Row with 8 columns(Im gonna add some buttons,icons,images and text field here) which all of them have to be the same height.
I did try use just % with height and maxHeight but obviously it didnt work out. I think pxs are pointless because it will be displayed on screens with different resolution so im afraid it will just mess up. I did download the MDBreact and used 'className="h-25 d-inline-block"' but it didnt work neither.
<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>
I did expect the height of column set equally at 20/25% (There gonna be 3 Rows + navbar is made already) but I got literally nothing except I do it with pixels but its missing the point.