在 CSS 中以可变高度将图像叠加在图像上

发布于 2025-01-02 20:07:19 字数 470 浏览 0 评论 0原文

我有一个图像(base.jpg),它具有以下 css:

.thumb-image {
padding: 0;
border: none;
margin: 0 auto 5px;
display: block;
width: 205px;
background: #EEE;
color: #8A8989;
border-image: initial;}

<img class="thumb-image" src="base.jpg" alt="" onerror="this.src='thumb.png'">

图像高度是可变的。无论如何,我是否可以通过在上面的 css 中添加另一个类声明,使用 css 将另一个图像(overlay.png,即红色图像)覆盖在右下角的 base.jpg 之上?

在此处输入图像描述 非常感谢

I have an image (base.jpg) which has the following css:

.thumb-image {
padding: 0;
border: none;
margin: 0 auto 5px;
display: block;
width: 205px;
background: #EEE;
color: #8A8989;
border-image: initial;}

<img class="thumb-image" src="base.jpg" alt="" onerror="this.src='thumb.png'">

The image height is variable. Is there anyway I can overlay another image (overlay.png which is the red image) on top of base.jpg on the bottom right cornerusing css by adding another class declaration to the above css?

enter image description here
Many thanks

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

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

发布评论

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

评论(2

琉璃梦幻 2025-01-09 20:07:19

您需要一个包装 div,然后绝对定位角图像。

<div id="wrap">
    <img src="img/big.jpg" class="big" alt=""/>
    <img src="img/corner.jpg" class="corner" alt=""/>
</div>

#wrap { position: relative; }
.big, .corner { display: block; }
.corner { position: absolute; right: 0; bottom: 0; }

You need a wrapper div and then absolute position the corner image.

<div id="wrap">
    <img src="img/big.jpg" class="big" alt=""/>
    <img src="img/corner.jpg" class="corner" alt=""/>
</div>

#wrap { position: relative; }
.big, .corner { display: block; }
.corner { position: absolute; right: 0; bottom: 0; }
一城柳絮吹成雪 2025-01-09 20:07:19

仅使用 .thumb-image 无法做太多事情。如果稍微修改一下 HTML,就可以相当轻松地完成此任务。我在这里举了一个例子: http://jsfiddle.net/imsky/AsUuh/

这通过使用 :before 和生成的内容,可以在 IE8+(使用 doctype)以及所有其他现代浏览器中工作。您可以将其转换为不使用任何现代功能,但这意味着在每个容器内包含一个额外的 DIV。顺便说一句, :before 不适用于 IMG 标签,因此这是尽可能少的标记。

HTML:

<div class="thumb-container">
<div class="thumb-image">
<img src="http://placekitten.com/205/300">
</div>
</div>

CSS:

.thumb-image {
    margin:0 auto 5px;
    width:205px;
    background:#EEE;
    color:#8A8989;
    border-image:initial;
    position:relative;
    z-index:0
}
.thumb-image img {
    border:0;
    display:block;
    width:100%
}
.thumb-container {
    position:relative
}

.thumb-image:before {
    content:"";
    display:block;
    position:absolute;
    width:100px;
    height:100px;
    bottom:0px;
    right:0px;
    z-index:1;
    background:url(http://placekitten.com/100)
}

There's not much you can do with just .thumb-image. If you modify the HTML somewhat, you can accomplish this fairly easily. I've put up an example here: http://jsfiddle.net/imsky/AsUuh/

This works IE8+ (with doctype), and across all other modern browsers, by using :before and generated content. You can convert it to use no modern features, but that would mean including an extra DIV inside each container. As an aside, :before doesn't work on IMG tags, so this is as minimal of markup as possible.

HTML:

<div class="thumb-container">
<div class="thumb-image">
<img src="http://placekitten.com/205/300">
</div>
</div>

CSS:

.thumb-image {
    margin:0 auto 5px;
    width:205px;
    background:#EEE;
    color:#8A8989;
    border-image:initial;
    position:relative;
    z-index:0
}
.thumb-image img {
    border:0;
    display:block;
    width:100%
}
.thumb-container {
    position:relative
}

.thumb-image:before {
    content:"";
    display:block;
    position:absolute;
    width:100px;
    height:100px;
    bottom:0px;
    right:0px;
    z-index:1;
    background:url(http://placekitten.com/100)
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文