I want to display an image in a CSS :before
element.
.withimage:before {
content: url(path/to/image.svg);
display: block;
height: 20px;
width: 20px;
}
The problem is, the height
and width
are applied to the element, but the SVG doesn't scale down. How do I apply the sizes to the actual element created by before?
Plnkr example: https://plnkr.co/edit/UgryaObojs6PCU579oGY