我有这个使用线性渐变的背景,它在 Chrome、Firefox 等现代浏览器中完美运行。但是 IE 只显示白色背景
body {
font-family: 'champagne__limousinesregular',Georgia, Serif;
font-size: 14px;
background: linear-gradient(0deg, rgba(255, 255, 255, 1)13%, rgba(220, 221, 222, 0.9)100%);
background: -moz-linear-gradient(0deg, rgba(255, 255, 255, 1)13%, rgba(220, 221, 222, 0.9)100%);
background: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 1)13%, rgba(220, 221, 222, 0.9)100%);
background: -o-linear-gradient(0deg, rgba(255, 255, 255, 1)13%, rgba(220, 221, 222, 0.9)100%);
}
有没有办法在 css 中应用这个背景并在用户使用 IE 时做一些特别的事情?像css里面的条件?这可能吗