我的任务是构建Web应用程序的前端,我要做的是在Button上应用CSS3渐变。我正在使用带有GWT插件的Eclipse,我正在使用GWT插件在Google Chrome中查看UI。
我的问题是GWT似乎删除了括号之间的空格,以便:
.gwt-Button {
background: -moz-linear-gradient(top, white, #72C6E4 4%, #0C5FA5);
background:-webkit-gradient(linear, left top, left bottom, from(white), to(#0C5FA5), color-stop(0.03, #72C6E4));
成为:
.gwt-Button {
background: -moz-linear-gradient(top,white,#72C6E44%,#0C5FA5);
background:-webkit-gradient(linear,lefttop,lefbottom, from(white), to(#0C5FA5), color-stop(0.03, #72C6E4));
这使它们无效。还有另一种方法可以解决这个问题,或者可能是一种在编译应用程序时防止删除空格的方法吗?感谢。