Her

Home HTML and CSS Tutorials Spice up Your Input Boxes

Spice up Your Input Boxes

Author: Chris Fresh Author's URL: www.webdesignhelper.co.uk More by this author

Ever wanted to customize your site's Input text boxes but don't know how? Well, here is a quick and easy way to do it.

A regular Input text box looks something like this:



The appearance of your Input can easily be changed to this:

(Note that this little trick will not work on Netscape Navigator, however Netscape 6 promises to be robust enough (by complying with standards) for it to work then.)

<!--The code for the modified input box below -->
<center>
<form method="post">
<input size="25" style="border: 13px solid rgb(255, 204, 0);" name="funform" type="text">
</form>
</center>
<!--The code for the modified input box above -->