Member Sign In
Not a member?
A Wired.com user account lets you create, edit and comment on Webmonkey articles. You will also be able to contribute to the Wired How-To Wiki and comment on news stories at Wired.com.
It's fast and free.
processing...Retrieve Sign In
Please enter your e-mail address or username below. Your username and password will be sent to the e-mail address you provided us.
processing...Welcome to Webmonkey
A private profile page has been created for you.
As a member of Webmonkey, you can now:
- edit articles
- add to the code library
- design and write a tutorial
- comment on any Webmonkey article
Sign In Information Sent
An e-mail has been sent to the e-mail address registered in this account.
If you cannot find it in your in-box, please check your bulk or junk folders.
Form Fields with Style
/skill level/
/viewed/
0 Times
Contents |
Introduction
Add visual style to your form fields with the simple addition of a background image.
What you'll need
A basic understanding of CSS and graphics creation.
Code and Explanation
<html>
<head>
<title>Form Field With Style</title>
<style>
.styledfield {
background: url(YOURIMAGE.gif) #EFEFEF no-repeat;
font: verdana 9pt #000;
border: dotted 1px #0066CC;
padding: 4px;
height: 30px;
width: 240px;
}
</style>
</head>
<body>
<p>Replace "YOURIMAGE.gif" in the CSS code above with the path to your image. Apply the corresponding class name to your form elements. This also works on submit buttons and textareas. Select lists will ignore the image but will pickup the background color you define following the image path. Drop shadows, watermarks, and gradients are nice ways to apply a unique feel to the appearance of your form elements.</p>
<form id="form" name="form" method="post" action="">
<input type="text" name="textfield" id="textfield" class="styledfield" />
<input type="submit" name="submit" id="submit" value="Submit" style="width:120px" class="styledfield" />
</form>
</body>
</html>
Suggested readings
Quirksmode has both a pure CSS method on styling <input type="file"> fields, in multiple browsers, and a JavaScript/CSS method.
- This page was last modified 15:59, 4 June 2008.
/related_articles/
Special Offer For Webmonkey Users
WIRED magazine:
The first word on how technology is changing our world.