html - Two column layout for two forms, with alignment between submit buttons -
i trying use html+css create 2 column layout display 2 parallel forms. input fields of forms flow naturally down each column, except 2 submit buttons, bad when not @ same height each other.
i have tried few different techniques, no avail:
html tables work creating layout, because elements grouped logically row, it's not possible have separate forms encompass each column. (one of columns has file upload, 1 big form no-go).
css tables no similar reasons.
using divs "float: left" , "float:right" respectively works layout, , nice grouping 2 forms. however, submit buttons (which last elements of divs) @ different heights. move higher button down height of lower button, vertically aligned. however, can't seem figure out way this, because 2 sibling divs, aren't "aware" of each other's heights.
here example jsfiddle of float-based implementation: http://jsfiddle.net/53nvqrfr/
<div style="float: left; width:50%"> <form> <table> <tr> <td> <input type=" text " /> </td> </tr> <tr> <td> <input type=" text " /> </td> </tr> <tr> <td> <button type="submit ">submit</button> </td> </tr> </table> </form> </div> <div style="float:right; width:50%"> <form> <table> <tr> <td> <input type=" text " /> </td> </tr> <tr> <td> <button type="submit ">submit</button> </td> </tr> </table> </form> </div> </div>
you can use bootstrap bootply , if want full width change class name container container-fluid.
Comments
Post a Comment