Changes between Version 2 and Version 3 of documentation/RCSS/FontEffects/Shadow

Show
Ignore:
Author:
peterc (IP: 203.96.63.172)
Timestamp:
05/02/08 10:00:36 (9 years ago)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • documentation/RCSS/FontEffects/Shadow

    v2 v3  
    44 
    55[[Image(effect_shadow_1.jpg, nolink)]] 
     6 
     7The effect has the following properties: 
     8 
     9''offset-x'' 
     10|| ''Value:'' || <number> || 
     11|| ''Initial:'' || 0 || 
     12|| ''Percentages:'' || N/A || 
     13 
     14''offset-y'' 
     15|| ''Value:'' || <number> || 
     16|| ''Initial:'' || 0 || 
     17|| ''Percentages:'' || N/A || 
     18 
     19These properties define the offset, in pixels, between the source text and the shadow. 
     20 
     21''offset''[[BR]] 
     22A shorthand property for setting ''offset-x'' and ''offset-y''. 
     23 
     24{{{ 
     25/* Declares a font effect shadow. */ 
     26h1 
     27{ 
     28    header-font-effect: shadow; 
     29    header-offset: 2px 2px; 
     30    header-colour: black; 
     31} 
     32}}}