newbienewbie Posted March 1, 2007 Share Posted March 1, 2007 <html> <body> <form action="" method="post"> Username: <input align="CENTER" name="username" type="text" size="10" maxlength="30"/> Password: <input name="password" type="password" size="10" maxlength="30" /> <input type="submit" value="Login" /> </form> <?php echo $_REQUEST['username']; echo $_REQUEST['password']; ?> </body> </html> i want to username and password box in center of the page i used align, but it doesn't works? any help Link to comment https://forums.phpfreaks.com/topic/40653-alignment-questions-basic/ Share on other sites More sharing options...
play_ Posted March 1, 2007 Share Posted March 1, 2007 <html> <body> <form action="" method="post"> Username: <input align="CENTER" name="username" type="text" size="10" maxlength="30"/> Password: <input name="password" type="password" size="10" maxlength="30" /> <input type="submit" value="Login" /> </form> <center> <?php echo $_REQUEST['username']; echo $_REQUEST['password']; ?> </center> </body> </html> Link to comment https://forums.phpfreaks.com/topic/40653-alignment-questions-basic/#findComment-196664 Share on other sites More sharing options...
newbienewbie Posted March 1, 2007 Author Share Posted March 1, 2007 thanks, but i want this into center middle, currently it is showing in center top. i used div <div align="right"> <center> <form action="" method="post"> Username: <input name="username" type="text" size="10" maxlength="30"/> Password: <input name="password" type="password" size="10" maxlength="30" /> <input type="submit" value="Login" /> </form> </center> </div> Link to comment https://forums.phpfreaks.com/topic/40653-alignment-questions-basic/#findComment-196672 Share on other sites More sharing options...
play_ Posted March 1, 2007 Share Posted March 1, 2007 Use tables and do valing="top". Or search the web for vertical aligning with css Link to comment https://forums.phpfreaks.com/topic/40653-alignment-questions-basic/#findComment-196674 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.