我使用SVG精灵作为我的背景图片:
$cell = $excel->getActiveSheet()->getCell('B' . $i);
$InvDate= $cell->getValue();
if (PhpOffice\PhpSpreadsheet\Shared\Date::isDateTime($cell)) {
$InvDate = PhpOffice\PhpSpreadsheet\Shared\Date::excelToDateTimeObject($InvDate);
}
精灵图像的颜色是黑色,但我希望它是白色的。我尝试过:
.naar-logo {
background: url(images/salt_sprite.svg) no-repeat -8px -78px;
width: 36px;
height: 49px;
position: relative;
top: 38px;
}
<div class="naar-logo"></div>
和background: url(images/salt_sprite.svg) no-repeat white -8px -78px;
在color: white;
条上,但不起作用。如何将svg精灵的颜色改为白色?