HTML Form Button CSS -
i have following code (there other stuff in form not relevant):
<fieldset> <form> <div><input type="submit" value="sign register"></input></div> </form> <form method="link" action="viewcurrent.php"> <input type="submit" value="view register"></input></br> </fieldset> </div>
both buttons work fine. on web page appear underneath each other. correct way have these buttons next each other instead of underneath eachother?
the proper way use display: inline-block
.
Comments
Post a Comment