Image on Material UI CardMedia

后端 未结 5 1592
别那么骄傲
别那么骄傲 2020-12-28 23:19

I´m having some troubles on getting an image from props on a CardMedia image:


    

        
5条回答
  •  [愿得一人]
    2020-12-28 23:38

    In my case it worked after changing the value of height other than 0 in the style

    Not Worked:

    const styles = {
      card: {
        maxWidth: 345,
      },
      media: {
        height: 0,
        paddingTop: '56.25%', // 16:9
      },
    };
    

    Worked:

    const styles = {
      card: {
        maxWidth: 345,
      },
      media: {
        height: "300px" or "10em",
        paddingTop: '56.25%', // 16:9
      },
    };
    

提交回复
热议问题