html - How to put text newar text at buttom op page -
i trying put few form, near each other @ bottom of page.
try css, nothing work.
this css:
#dcustomer,#dorder,#admin{ text-align:inline-block; } #uadmin,#uorder,#ucustomer,#add { float:right; vertical-align:10px; }
this example 1 of form:
<form action="admincontrol.php" id="uorder" method="post"> <h3><b><u>update order</b></u> </h3><br> order number: <input type="text" name="onumber"><br><br> product name: <input type="text" name="product_name"><br><br> customer name: <input type="text" name="name"><br><br> customer number: <input type="text" name="cnumber"><br><br> e-mail: <input type="text" name="email"><br><br> phone number: <input type="text" name="phone"><br><br> quantity: <input type="text" name="quantity"><br><br> <input type="submit" name="updateorder" value="update"> </form>
every screen may not able fit in 1 line
float right or left every form (and reduce width if want)
link example https://jsfiddle.net/vko4om7o/7/
form { float: right; vertical-align: 10px; width: 25%; }
increase size of frame better visibility
Comments
Post a Comment