css改变svg的颜色
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="author" content="杨欣">
<title>css改变svg的颜色</title>
<style>
.img {
width: 100px;
height: 100px;
}
.img img {
width: 100%;
height: 100%;
filter: drop-shadow(red 100px 0);
transform: translateX(-100px);
}
</style>
</head>
<body>
<img class="img" src="./logo.svg" alt="svg">
<div class="img">
<img src="./logo.svg" alt="svg">
</div>
</body>
</html> 相关推荐
nicepainkiller 2020-07-24
CSSEIKOCS 2020-07-18
冰蝶 2020-07-04
sdbxpjzq 2020-06-25
CaiKanXP 2020-06-13
opspider 2020-06-06
buttonChan 2020-06-06
heavenautumn 2020-05-31
MaureenChen 2020-05-17
zhanghao 2020-05-10
waterv 2020-05-04
xiaohuli 2020-04-22
coulder 2020-04-14
沈宫新 2020-04-10
coulder 2020-04-07
nicepainkiller 2020-02-23
teresalxm 2020-02-23
NARUTOLUOLUO 2011-06-24
木四小哥 2011-06-17