I am trying to use the default Bootstrap icons called Glyphicons to style one span
with three overlapping icons, which will open many new possibilities in the sparse library of Bootstrap icons.
This jsfiddle is where I am at the moment, but I would love to use three icons in one html element, instead of just two, and I would rather not use images or sprites but utilize the already existing glyphicons.
Oh, and I am also trying to make the code CSS 2.1 for browser compatibility.
It seems to me that the following CSS part doesn't work, the content icon is only set when I use :before
and :after
.glyphicon-picture {
content: "\e060";
}
What am I doing wrong? How would you modify this code to get three overlapping icons(trying to make a typical carousel icon, with one big in the middle, and two small partly behind on each side)?