We're calling on all EU-based Mozillians with iOS or iPadOS devices to help us monitor Apple’s new browser choice screens. Join the effort to hold Big Tech to account!

Търсене в помощните статии

Избягвайте измамите при поддръжката. Никога няма да ви помолим да се обадите или изпратите SMS на телефонен номер или да споделите лична информация. Моля, докладвайте подозрителна активност на "Докладване за злоупотреба".

Научете повече

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

  • 2 отговора
  • 3 имат този проблем
  • 11 изгледи
  • Последен отговор от 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

Всички отговори (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!