Is it possible to have multiple background images on the same element?
My attempt using Bootstrap:
<a class="left-icon icon-share list-group-item list-group-item-primary list-group-item-action">Exportable</a>
.list-group-item-action.left-icon {
background-image: var(--icon-auto-url), var(--list-group-action-icon);
background-position-x: var(--list-group-icon-padding-x), right var(--list-group-icon-padding-x);
background-position-y: center;
}
This code works in Safari, but not in Chrome. Any suggestions on what I might be doing incorrectly?
Safari Example:
https://i.sstatic.net/8VvV0NTK.png