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. 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> 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
Archived
This topic is now archived and is closed to further replies.