place textbox over an image
by Ramya[ Edit ] 2009-03-13 15:54:04
Input/Text box over an image:
Sometimes there may be a case of placing input box/textbox over an image(for eg, over header image/anything).
So to place textbox over an image use css position property,
.pos
{
position:absolute;
left:100px;
top:150px;
}
Adjust top and left attributes to place textbox/input box in an exact position.
Use the above style in <img> as
<img src="test.jpg"><input type=text class="pos"></img>