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> 

enter image description here

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

Popular posts from this blog

sql - invalid in the select list because it is not contained in either an aggregate function -

Angularjs unit testing - ng-disabled not working when adding text to textarea -

How to start daemon on android by adb -