Template: Box-shadow

From A Wiki of Ice and Fire
Revision as of 15:22, 22 August 2012 by Ser Rogal Dayne (talk | contribs) (Created page with "<includeonly>-moz-box-shadow: {{{1|4px}}} {{{2|4px}}} {{{3|4px}}} {{{4|#CCC}}}; -webkit-box-shadow: {{{1|4px}}} {{{2|4px}}} {{{3|4px}}} {{{4|#CCC}}}; box-shadow: {{{1|4px}}} {{{2...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search


This template is a shortcut for producing shadows. It generates the CSS for various browsers. Supported browsers are the current versions of Opera, Firefox, Safari, Chrome and Internet Explorer 9.

Usage

Insert this template within a style tag of any element:

{{box-shadow | X-offset | Y-offset | blur radius | #color}}

  • X-offset and Y-offset - Specify the offset of the shadow to the right and below the element. Use negative values for a shadow to the left and above. Default is 4px.
  • blur radius - Specifies how much blurring is added to the border in addition to the offsets. Default is 4px.
  • color - Specifies the color of the shadow. Default is #CCC;.

Example

  • <div style="background-color: #FFFFDD; border: 1px solid #808000; padding: 5px; {{box-shadow}}">text text...</div> will produce a box with the default border shadow:
text text text.
  • <div style="background-color: #FFFFDD; border: 1px solid #808000; padding: 5px; {{box-shadow|4px|4px|8px|#A0A080}}">text text...</div> will produce a more pronounced and colored shadow:
text text text.