ben-eb/css-values

Support proprietary gradient syntaxes.

Open

#20 ouverte le 20 août 2016

Voir sur GitHub
 (0 commentaires) (0 réactions) (0 assignés)JavaScript (3 forks)github user discovery
enhancementhelp wanted

Métriques du dépôt

Stars
 (64 stars)
Métriques de merge PR
 (Métriques PR en attente)

Description

body {
  background: -moz-linear-gradient(top, #1e5799 0%, #2989d8 50%, #207cca 51%, #7db9e8 100%); /* FF3.6-15 */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1e5799), color-stop(50%,#2989d8), color-stop(51%,#207cca), color-stop(100%,#7db9e8)); /* Chrome4-9,Safari4-5 */
  background: -webkit-linear-gradient(top, #1e5799 0%,#2989d8 50%,#207cca 51%,#7db9e8 100%); /* Chrome10-25,Safari5.1-6 */
  background: -o-linear-gradient(top, #1e5799 0%,#2989d8 50%,#207cca 51%,#7db9e8 100%); /* Opera 11.10-11.50 */
  background: -ms-linear-gradient(top, #1e5799 0%,#2989d8 50%,#207cca 51%,#7db9e8 100%); /* IE10 preview */
  background: linear-gradient(to bottom, #1e5799 0%,#2989d8 50%,#207cca 51%,#7db9e8 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

http://www.colorzilla.com/gradient-editor/ is a good tool to use for generating the backwards compatible syntaxes.

Guide contributeur