Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Hi actually its due to <strong>box-shadow</strong> as you defined so i just reduced the <strong>blur value</strong> of your box-shadow property and its working fine now.</p> <p><strong>CSS</strong></p> <pre><code>.shadow { -moz-box-shadow: 0px 3px 4px -1px gray; -webkit-box-shadow: 0px 3px 4px -1px gray; box-shadow: 0px 3px 4px -1px gray; /* For IE 8 */ -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=2, Direction=135, Color='#808080')"; /* For IE 5.5 - 7 */ filter: progid:DXImageTransform.Microsoft.Shadow(Strength=2, Direction=135, Color='#808080'); } </code></pre> <p>i hope this will help you see the demo :- </p> <p><a href="http://jsfiddle.net/XZeYK/18/" rel="nofollow">http://jsfiddle.net/XZeYK/18/</a></p> <p>And there are five values of <strong>box-shadow</strong> property as we can define :- </p> <p>AS Example : <code>-moz-box-shadow: 3px 3px 5px 6px #ccc;</code></p> <ol> <li><p>The horizontal offset of the shadow, positive means the shadow will be on the right of the box, a negative offset will put the shadow on the left of the box.</p></li> <li><p>The vertical offset of the shadow, a negative one means the box-shadow will be above the box, a positive one means the shadow will be below the box.</p></li> <li><p>The blur radius (optional), if set to 0 the shadow will be sharp, the higher the number, the more blurred it will be.</p></li> <li><p>The spread radius (optional), positive values increase the size of the shadow, negative values decrease the size. Default is 0 (the shadow is same size as blur).</p></li> <li><p>Color</p></li> </ol>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload