我对此进行了测试,它可以在所有现代浏览器中随心所欲地工作。但是,如果您希望在大多数浏览器(包括旧浏览器)上获得支持,我建议使用 CSS3 polyfill.. 当前对 CSS 渐变的支持可在此处找到。
background: -webkit-radial-gradient(ellipse farthest-corner at center top , #00B9E6 0%, #00B9E6 38%, #003766 68%) repeat fixed 0 0 transparent;
background: -moz-radial-gradient(ellipse farthest-corner at center top , #00B9E6 0%, #00B9E6 38%, #003766 68%) repeat fixed 0 0 transparent;
background: -o-radial-gradient(ellipse farthest-corner at center top , #00B9E6 0%, #00B9E6 38%, #003766 68%) repeat fixed 0 0 transparent;
background: radial-gradient(ellipse farthest-corner at center top , #00B9E6 0%, #00B9E6 38%, #003766 68%) repeat fixed 0 0 transparent;
如果您想避免重复的 -moz、-o、-webkit 缩写,也可以使用less 。