cougar23 Posted May 15, 2008 Share Posted May 15, 2008 Anyone know how to center the text in a textfield? I've tried align="center" but that doens't seem to be doing it. Quote Link to comment https://forums.phpfreaks.com/topic/105843-solved-center-text-in-textfield/ Share on other sites More sharing options...
AndyB Posted May 16, 2008 Share Posted May 16, 2008 <html> <head> <title>Untitled</title> <style type="text/css"> .mid { text-align:center;} </style> </head> <body> <form> <input class="mid" type="text" value="wombat" size="20"/> </form> </body> </html> Quote Link to comment https://forums.phpfreaks.com/topic/105843-solved-center-text-in-textfield/#findComment-542535 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.