Hilfe durchsuchen

Vorsicht vor Support-Betrug: Wir fordern Sie niemals auf, eine Telefonnummer anzurufen, eine SMS an eine Telefonnummer zu senden oder persönliche Daten preiszugeben. Bitte melden Sie verdächtige Aktivitäten über die Funktion „Missbrauch melden“.

Learn More

I add some -webkit in the CSS and FF does not see it, in Chrome it works fine. (-webkit-box-shadow)

  • 2 Antworten
  • 3 haben dieses Problem
  • 11 Aufrufe
  • Letzte Antwort von cobolCowboy

more options

I'm putting together a website, and as all do I test in all browser. I decided to use shadowing and added -webkit-box-shadow in the CSS for some elements. It works fine in Chrome, not at all in FF3.6

I'm putting together a website, and as all do I test in all browser. I decided to use shadowing and added -webkit-box-shadow in the CSS for some elements. It works fine in Chrome, not at all in FF3.6

Alle Antworten (2)

more options

Webkit is the name of the rendering engine used in browsers like Safari and Chrome. CSS properties prefixed with -webkit- only work in Webkit-based browsers. For compatibility with Firefox 3.5 and higher, use -moz-box-shadow.

For more information, see Mozilla Developer Center - box-shadow

more options

Thank you Gingerbread_Man, that did the trick!