0
我的CSS代碼如下:
body {
background: #3c99d4;
background: -moz-radial-gradient(center, ellipse cover, #81e8f9 0%, #0358b5 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#81e8f9), color-stop(100%,#0358b5));
background: -webkit-radial-gradient(center, ellipse cover, #81e8f9 0%,#0358b5 100%);
background: -o-radial-gradient(center, ellipse cover, #81e8f9 0%,#0358b5 100%);
background: -ms-radial-gradient(center, ellipse cover, #81e8f9 0%,#0358b5 100%);
background: radial-gradient(ellipse at center, #81e8f9 0%,#0358b5 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#81e8f9', endColorstr='#0358b5',GradientType=1);}
這是否發生在所有瀏覽器或只是一個特定的? –
把你在http://jsfiddle.net/ – mawburn
上看到的東西發生在所有瀏覽器中。 – user1685565