View Single Post
Old 05-18-2008, 01:05 AM   #1
Cash88
Intern
 
Join Date: Jan 2008
Posts: 13
Default Border outside of Form!

Hello Everyone,

I am trying to have a border around my input text field box

Here is the site http://kevinkashou.com/test.html where I am having trouble with. I have a picture of what I am trying to do and the html portion is right after that. YOu can see what I am getting instead.

HTML Code:
<span class="border"><input type="text" class="margin" value="Type Here. . ." /></span>
Code:
		.border {
			width: 146px;
			height: auto;
			margin: 0px;
			padding: 2px;
			border: 1px solid #FFCC33;
		}
		
		.margin {
			width: 150px;
			height: auto;
			margin: 0px;
			padding: 0px;
			font-size: 10px;
			color: #999999;
		}
Any Idea?

Thanks
Cash88 is offline   Reply With Quote