如何在图像上叠加Glyphicon

时间:2014-08-25 15:38:10

标签: html css

我无法理解如何对Glyphicon进行分层(.glyphicon- 放大一个Bootstrap .img-thumbnail。

css规则是 - content:“\ e015”;

1 个答案:

答案 0 :(得分:22)

HTML:

<div class="wrapper"><img src="..."><span class="glyphicon glyphicon-leaf"></span><div>

CSS:

.wrapper {
   position: relative;
}

.wrapper .glyphicon {
   position: absolute;
   top: 20px;
   left: 40px;
}

http://jsfiddle.net/idmean/7672Lt7L/1/甜蜜,不是吗?