HTML & CSS Wiki

READ MORE

HTML & CSS Wiki
Stub

This article is a stub. Please help the wiki by coding it. Spamming and vandalism is not considered an improvement and will result in discipline, up to, and including a permanent block.


The CSS -moz-window-shadow Mozilla extension property specifies whether a window will have a shadow. Currently it only works on Mac OS X. Firefox 3 added support for transparent windows on Mac OS X. However, for these windows shadows were turned off and there was no way of turning them on. In Firefox 3.5 the default was changed: all windows will now have a shadow. The -moz-window-shadow property was introduced to provide a way to turn off unwanted shadows.


Values[]

  • default - The window will have a shadow with the default window shadow style.
  • none - The window won't have a shadow.


CSS example:

.KUI-panel {
            -moz-window-shadow: none;
}