multiple box-shadows not rendering

Posted by sico87 on Stack Overflow See other posts from Stack Overflow or by sico87
Published on 2012-07-06T15:04:13Z Indexed on 2012/07/06 15:15 UTC
Read the original article Hit count: 176

Filed under:
|
|

I am trying to give a text input a drop-shadow & a inner shadow, using CSS3 and box-shadow, you can see my code here,

.text {
        width:388px;
        line-height:37px; 
        height:37px; 
        box-shadow:inset 0px 4px 4px rgba(193, 209, 230, 0.58), 0px 2px 2px, rgba(255, 255, 255, 0.75);
        border-radius:10px; 
        background:#cdd6e6; 
        border:0 none; 
}

? ? http://jsfiddle.net/3CBrm/

However my box-shadow rules are just being ignored, what am I doing wrong?

© Stack Overflow or respective owner

Related posts about css

Related posts about css3