88 | | background: #d9d9d9; /* fallback color */ |
89 | | background: -moz-linear-gradient(bottom, #d7d7d7, #e4e4e4); |
90 | | background: -webkit-gradient(linear, left bottom, left top, from(#d7d7d7), to(#e4e4e4)); |
| 88 | background-color: #d9d9d9; /* Fallback */ |
| 89 | background-image: -ms-linear-gradient(bottom, #d7d7d7, #e4e4e4); /* IE10 */ |
| 90 | background-image: -moz-linear-gradient(bottom, #d7d7d7, #e4e4e4); /* Firefox */ |
| 91 | background-image: -o-linear-gradient(bottom, #d7d7d7, #e4e4e4); /* Opera */ |
| 92 | background-image: -webkit-gradient(linear, left bottom, left top, from(#d7d7d7), to(#e4e4e4)); /* old Webkit */ |
| 93 | background-image: -webkit-linear-gradient(bottom, #d7d7d7, #e4e4e4); /* new Webkit */ |
| 94 | background-image: linear-gradient(bottom, #d7d7d7, #e4e4e4); /* proposed W3C Markup */ |