css – 如何在伪类之前设置SVG图像的大小?

前端之家收集整理的这篇文章主要介绍了css – 如何在伪类之前设置SVG图像的大小?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在CSS中显示图像:在元素之前.
.withimage:before {
  content: url(path/to/image.svg);
  display: block;
  height: 20px;
  width: 20px;
}

问题是,高度和宽度应用于元素,但SVG不会缩小.如何将尺寸应用于之前创建的实际元素?

Plnkr示例:https://plnkr.co/edit/UgryaObojs6PCU579oGY

解决方法

您可以使用svg作为背景图像:
.withimage:before {
  content: "";
  display:block;
  height:125px;
  width:125px;
  background-size: 125px 125px;
  background-image: url(test.svg);
  background-repeat: no-repeat;
}

这是example

你也可以尝试使用这个:

.withimage:before {
  content: url("data:image/svg+xml; utf8,<svg.. code here</svg>");
    display:block;
    height:20px;
    width:20px;
}
原文链接:https://www.f2er.com/css/215820.html

猜你在找的CSS相关文章