在 CSS 中以可变高度将图像叠加在图像上
我有一个图像(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?
Many thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要一个包装 div,然后绝对定位角图像。
You need a wrapper div and then absolute position the corner image.
仅使用
.thumb-image
无法做太多事情。如果稍微修改一下 HTML,就可以相当轻松地完成此任务。我在这里举了一个例子: http://jsfiddle.net/imsky/AsUuh/这通过使用 :before 和生成的内容,可以在 IE8+(使用 doctype)以及所有其他现代浏览器中工作。您可以将其转换为不使用任何现代功能,但这意味着在每个容器内包含一个额外的 DIV。顺便说一句, :before 不适用于 IMG 标签,因此这是尽可能少的标记。
HTML:
CSS:
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:
CSS: