HTML CSS examples for HTML Tag:input button
Layout Input and button on the same line with float right
<html lang="en"> <head> <style> .float-right { float:right; } </style> <!--from www . j a v a2 s. co m--> </head> <body translate="no"> <div> <input type="text" class="float-right"> <button class="float-right">Submit</button> </div> </body> </html>