html - How do I make multiple buttons and checkboxes moved through css interactable? -
i have page checkmark , 2 buttons. when move them through css cant interact them longer, have solved through using z-index: 1;
, this:
<div style="position: relative; bottom: +95; z-index: 1;"> <button name="" value="">bypass</button> <button name="open" value="n">bypass</button> </div>
but when add checkbox under these buttons this:
<div style="position: relative; bottom: +115px; font-size: 13px; margin-left: -435px;">1: <input type="checkbox" name="one" value="yes"></div>
i can't interact it.
i have tried adding z-index: 2;
this:
<div style="position: relative; bottom: +115px; font-size: 13px; margin-left: -435px; z-index: 2;">1: <input type="checkbox" name="one" value="yes"></div>
which makes checkbox interactable, makes buttons un-interactable. how can make both buttons , checkbox interactable?
Comments
Post a Comment