I have a problem and I can\'t figure out what exactly is causing this behavior. I cannot access my input fields and textarea
s on my HTML form.
Unfortun
I had this issue caused by a sort of overlap of a div
element with a bootstrap class ="row"
over a "brother" div
element with the class="col"
, the first hid the focus of the second div
element.
I solved taking outer the div row
element from that level of the divs' tree and so rebalancing bootstrap logical hierarchy based on the row
and col
classes.