IE css 兼容性问题

最近在项目中遇到一个问题,react 项目 通过 webpack 打包后,编译中会将 transparent 转为 inital,inital 关键字 IE识别不了,导致 IE 存在样式兼容问题。

最后的解决方案是 通过 rgba 替换 transparent

background-color: transparent;

改为

background-color: rgba(0, 0, 0, 0.01);

即可。

原文地址:https://www.cnblogs.com/crazycode2/p/15017130.html