当我向 table.My 中插入图像时,图像超出了列。 table 的宽度变得比 section.How 大 我如何解决这个问题

When i am inserting an image to my table.My image exceeds the column. The table's width becomes more than the section.How do I resolve this issue

当我向 table 插入图像时,由于图像是使用截图工具获取的。我的图像超出了专栏。 table的宽度变大了 section.How 怎么解决这个问题

试试这个 css。这应该使您的图像采用它的容器宽度。

img {
    width: 100%;
    display: block;
}