This is my url where you’ll see the textareas with the Dashed line some thing like the following:
All I am trying to do is that whenever i wrtie then the text being witten on the lines of the text area and on enter text should be entered from the second line and so on. Currently the text is being written on the first line but it got messed up for other lines. Following is my css for the text area. Kindly let me know how can i accomplish this functionality that text should be written on each line .
Thanks!
.textdash
{
border:1px; border-style:solid; background-image:url(images/text.jpg); background-repeat:repeat; font-family:"Times New Roman", Times, serif; font-size:18px;
}
add this to
.textdash { }line-height: 23px;I would even recommend to adjust your background image to be a few pixels shorter or taller and then adjust
line-heightuntil you get it right.