PDA

View Full Version : CSS textarea


dholt
07-17-2009, 08:22 PM
I seen this on Daniweb and I thought the Question would be best answered over here.

I found a Bunch of tutorials on the net pertaining to this and on here that just didn't work for me as they were for older vb versions.

I though there was a way to add some text that will disappear when clicked on.

I'm running vb 3.8.3 and I understand in the css style sheet there is a editor box too change the attributes but not sure how to implement this.

this one says to add to the header

<style>
textarea{
background-image:url(blue_saturn.jpg);
color:ff0000;
}
</style>


<form>
<textarea
cols="15"
rows="5"
style="
font-size: 44px;
color: white;
background-image: url(http://flowto.info/will.jpg);
background-repeat: no-repeat;
background-position: center;
background-color: black;"
wrap="off">
</textarea>
</form>


then add this for it to disappear

readonly="yes"

If someone at some time