我正在设计一个电子商务 Gekosale。不幸的是,我无法更改现有的 css 文件(当用户在管理区域中保存一些设置时,它们会被覆盖)。那些现有的 css 文件包含 IE 特定的样式,即。
progid:DXImageTransform.Microsoft.gradient(startColorstr='#063053', endColorstr='#395873');
我不知道如何从我自己的文件中更改它们。我知道如何改变每一种“正常”的风格
.class123
{
color: red;
}
可以很容易地改变:
.class123
{
color: blue !important;
}
谁能告诉我如何从 CSS 中关闭 IE 渐变和其他类似的东西?