【发布时间】:2011-08-30 22:11:59
【问题描述】:
有没有办法在 IE 中实现对角渐变?在 Chrome 中,我可以这样做:
body{
background-image:-webkit-gradient(
linear,
left top,
right bottom,
color-stop(0%,#f00),
color-stop(50%,#0f0),
color-stop(100%,#00f));
}
但这在 IE 中不起作用。
【问题讨论】:
标签: css internet-explorer filter cross-browser gradient