I'm having trouble adding the nice shadow on focus for an input box on my ipad for safari.

Here's my code

/* remember to define focus styles! */
:focus {
    outline: 0;
}    
input[type=text]{
        width: 494px;

        height: 44px;
        line-height: 44px;
        font-size: 24px;
        border: 2px solid #666666;
    }
    input:focus{
      -webkit-box-shadow:0 0 15px #ffffff;
       -moz-box-shadow: 0 0 15px #ffffff;
       box-shadow:0 0 15px #ffffff;
    }

I'm using eric meyer's reset. I want it to look like this: alt text

Any ideas?

Thanks guys.

Jason

link|improve this question

feedback

2 Answers

I have the same problem but I found the solution:

-webkit-appearance: none;

However it does not work when there is an inset shadow.

link|improve this answer
It works, thanks! – szym Mar 23 at 15:21
feedback
up vote 2 down vote accepted
<input type="text" name="success" value="fail">

No dice people, ipad hasn't got support for this which is so useless, chrome is it!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.