避免图像超出 div 范围?

发布于 2024-10-05 15:43:41 字数 175 浏览 3 评论 0原文

我有:

<div style="height:15px">
    <img src="image" />
</div>

图像大于15px,所以当你看到它时它在div之外。如何仅使用 css“裁剪”图像(仅显示其 15px 端口)?

I have:

<div style="height:15px">
    <img src="image" />
</div>

The image is bigger than 15px, so it's outside the div when you see it. How do I "crop" the image (show only the 15px port of it), only using css?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(7

眼睛会笑 2024-10-12 15:43:41

您需要 overflow:hidden 请参阅此处的示例:

http://www.jsfiddle.net /S8qAq/

了解溢出此处 W3Schools

祝你好运!

You need overflow:hidden see an example here:

http://www.jsfiddle.net/S8qAq/

Read about overflow: here W3Schools

Good luck!

若无相欠,怎会相见 2024-10-12 15:43:41

尝试为 div 添加 overflow:hidden

Try giving an overflow:hidden to the div.

荒芜了季节 2024-10-12 15:43:41

overflow:hidden; 添加到您的 div 样式中。

add overflow:hidden; to your div style.

近箐 2024-10-12 15:43:41

使用 CSS 溢出属性:

overflow: hidden;

Use the overflow css property:

overflow: hidden;
撞了怀 2024-10-12 15:43:41

我很惊讶没有人建议 object-fit: cover;

I am surprised no one has suggested object-fit: cover;

不如归去 2024-10-12 15:43:41

使用

overflow:hidden;

use

overflow:hidden;
深海夜未眠 2024-10-12 15:43:41
  1. overlow: hideobject-fit: cover;width: fit-content 它们都有自己的障碍。如果您有多个图像,那么这些方法可能无法为您提供最佳解决方案。

  2. 相反,您可以定义父元素大小并强制子元素相应地适应 max-heightmax-width

<div style="height:15px; width: 15px;">
    <img src="image" style="max-height:100%; max-width: 100%;">
</div>
  1. overlow: hidden, object-fit: cover; and width: fit-content they come with their own hurdles. If you have more than one image, then these methods may not provide you with the best solution.

  2. Instead, you can define parent element size and force children to fit inside accordingly with max-height and max-width

<div style="height:15px; width: 15px;">
    <img src="image" style="max-height:100%; max-width: 100%;">
</div>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文