In my server logs, I get a lot of errors, such as:
File does not exist: /my/path/-moz-linear-gradient(top,white,
This seems to be related to the following Bootstrap CSS snippet, where some browsers should interpret -moz-linear-gradient as the background image to load:
.btn{ background-color: whiteSmoke; background-image: -webkit-gradient(linear,0 0,0 100%,from(white),to(#E6E6E6)); background-image: -webkit-linear-gradient(top,white,#E6E6E6); background-image: -o-linear-gradient(top,white,#E6E6E6); background-image: linear-gradient(to bottom,white,#E6E6E6); background-image: -moz-linear-gradient(top,white,#E6E6E6); background-repeat: repeat-x; }
How can I prevent such errors? Thanks!
css
David
source share