html - Why am I not able to type input into input boxes? -
to replicate:
- be using chrome version 34 or latest version of firefox.
- open site , click
sign up
orlogin
- in chrome, click in
password
input. in firefox, click in input.
the results should input appears focus, not allow user enter characters.
solutions have tried:
- disabling javascript
- messing
z-index
settings (making sure parent , child elements hadposition
otherstatic
.
things note:
- i did not have problem in chrome version 33.
- this happens in windows 7, windows 8.1, , on mac.
- in chrome inputs of type
password
not work.text
does.
i feel it's issue z-index
, .list
elements underneath .drop-box
, puzzled why (in chrome) input type text work password wouldn't. have been trying see might have changed between chrome version 33 , 34 can maybe pinpoint issue, have had no luck of yet.
any ideas?
you have box-sizing: border-box
, padding-top + padding-bottom = height
. means content height zero, cannot see type (but attempting type correctly updates validation).
you should remove box-sizing
on elements, or remove padding
.
Comments
Post a Comment