gpt4 book ai didi

css - MS Edge svg 缩放

转载 作者:太空宇宙 更新时间:2023-11-04 09:50:56 26 4
gpt4 key购买 nike

svg 格式图标,我对 chromeIE 使用缩放将其调整为 85% 和 -moz-transform: scale(0.85);对于 FF,但在 Edge 中它似乎不起作用是否有另一种方法可以在 Edge 中做到这一点?

.myIcon {
display: inline-block;
height: 40px;
width: 40px;
margin-left: 10px;
zoom: 85%;
-moz-transform: scale(0.85);
background: url('../myIcons.svg') no-repeat -110px 0;
}

最佳答案

试试这个

.myIcon {
display: inline-block;
height: 40px;
width: 40px;
margin-left: 10px;
background: url('../myIcons.svg') no-repeat -110px 0;
/* zoom: 85%; Don't need this if you're using the cross browser codes below*/

transform: scale(0.85); /* (Modern Browsers Universal Code including Edge) */
-moz-transform: scale(0.85); /* (Old versions of Firefox) */
-webkit-transform: scale(0.85); /* (Chrome, Safari, newer versions of Opera.) */
-o-transform: scale(0.85); /* (Old versions of Opera) */
-ms-transform: scale(0.85); /* (IE 9 and below) */
}

关于css - MS Edge svg 缩放,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39098170/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com