开发者

Some of my text fields and text areas cannot be clicked for data entry

开发者 https://www.devze.com 2023-01-25 10:28 出处:网络
After applying CSS to one of my form开发者_运维百科s, some of the fields cannot be accessed without tabbing to them. I am applying relative positions, padding, and float. What is the likely cause of t

After applying CSS to one of my form开发者_运维百科s, some of the fields cannot be accessed without tabbing to them. I am applying relative positions, padding, and float. What is the likely cause of this problem?


When using positioning you might have positioned your form under some other element and now only click in that one instead on your form.

  • Try to get it on the top layer. You can do that by specifying the z-index higher value.

    input { z-index:2;}

  • Or move it somewhere else temporarily to see if it was under some other element.

0

精彩评论

暂无评论...
验证码 换一张
取 消