I was wondering how would I be able to get from a conventional input and textarea look into a dashed look something like
Name
-------
| |
-------
I would think its sometin like
form.input {
decoation: dotted;
}
I was wondering how would I be able to get from a conventional input and textarea look into a dashed look something like
Name
-------
| |
-------
I would think its sometin like
form.input {
decoation: dotted;
}
Last edited by Mehok; 11-11-2006 at 12:28 PM.
text-decoration: none;
font-weight: normal;
color: 000000;
border-top: 1px dotted;
border-bottom: 1px dotted;
border-color: 000000;
Then just make sure you use that table or div correctly in your layout, depending on you tables and other classifications.
{CWoT - Riddle } {Freelance Copywriter} {Learn to Write}
Follow Me on Twitter: @InkingHubris
PHP Code:$result = mysql_query("SELECT finger FROM hand WHERE id=3");
echo $result;
Like this:
<INPUT TYPE=TEXT NAME="name" VALUE="your name" style="border:1px dotted #666666; width:190px">
Or like this:
<INPUT TYPE=TEXT NAME="name" VALUE="your name" style="border-top:1px dotted #666666; border-bottom:1px dotted #666666; border-left:0px; border-right:0px; width:190px">
thanks for your help the last code was a grate help so i thank you from the bottom of my hart
Bookmarks