我确定我在这里错过了一些简单的东西,但我无法解决这个问题。
只有扩展的卡片才能改变高度。 以下是我的意思截图:material-ui cards
答案 0 :(得分:7)
您可以将样式应用于卡片。
var cardStyle = {
display: 'block',
width: '30vw',
transitionDuration: '0.3s',
height: '45vw'
}
在您的CardStyle中,您可以通过
应用上述样式 <Card style={cardStyle}>
<CardHeader
title="URL Avatar"
subtitle="Subtitle"
avatar="https://placeimg.com/800/450/nature"
/>