Published on IntelliWeb.Tools (
http://www.intelliwebtools.com
)
How to add a background image to a textarea box
So you want to add a fancy image backgound to your textarea box. Here's how to do it using CSS. Simply add the following style tags to the head section of your page:
<style>
textarea{
background-image:url(http://www.url_to_your_image.com/image.gif);
color:ff0000;
}
</style>
See a demo below:
This is a demo of a textarea with a background image
Source URL:
http://www.intelliwebtools.com/node/340