mibacode
mibacode

Reputation: 404

Why am I not able to type input into input boxes?

To replicate:

The results should be that the input appears to get focus, but does not allow the user to enter characters.

Solutions I have tried:

Things to note:

I really feel like it's an issue with the z-index and the .list elements underneath the .drop-box, but am also puzzled why (in Chrome) an input with type text would work but password wouldn't. I have been trying to see what might have changed between Chrome version 33 and 34 so I can maybe pinpoint the issue, but have had no luck as of yet.

Any ideas?

Upvotes: 2

Views: 9025

Answers (1)

Niet the Dark Absol
Niet the Dark Absol

Reputation: 324620

You have box-sizing: border-box and padding-top + padding-bottom = height. This means the content height is zero, so you cannot see anything you type (but attempting to type correctly updates the validation).

You should remove the box-sizing on those elements, or remove the padding.

Upvotes: 5

Related Questions