如何为 React 组件设置高度
How to set height to a React Component
我已经尝试了几乎所有的方法来为反应组件设置高度,但它似乎不起作用,但是当我以相同的方式设置宽度时它起作用了!我正在使用 Material-ui.
中的 <card>
这是一个例子:
const Sty1={
height:'100%'
}
const Threads = React.createClass({
render: function() {
return (
<Card style={Sty1}>
*other stuff*
</Card>
);
}
});
您尝试的相对高度不适用于 Card 组件。使用固定尺寸,或使用纸张。
见下文:
style={ { height: 100 } } {your parameter to display}</td>
以上是针对table的专栏。
保持默认宽度,请勿更改或指定。
我已经尝试了几乎所有的方法来为反应组件设置高度,但它似乎不起作用,但是当我以相同的方式设置宽度时它起作用了!我正在使用 Material-ui.
中的<card>
这是一个例子:
const Sty1={
height:'100%'
}
const Threads = React.createClass({
render: function() {
return (
<Card style={Sty1}>
*other stuff*
</Card>
);
}
});
您尝试的相对高度不适用于 Card 组件。使用固定尺寸,或使用纸张。
见下文:
style={ { height: 100 } } {your parameter to display}</td>
以上是针对table的专栏。 保持默认宽度,请勿更改或指定。