Textbox and image probelm

liunx

Guest
Hi,

i am trying to display an image beside the textbox and exactly like tht height of textbox and image should be equal.i done with it but the problem is i had one label on top of textbox if i am using this image there is some agp between textbox and label .
How can i remove the gap..

regards

Ranjith.Can you use the CSS positioning properties? i.e.
.myLabel {
position: absolute;
left: 100px;
top: 80px;
height: 50px;
width:200px;
}
.myTextbox {
position: absolute;
left: 100px;
top: 100px;
height: 50px;
width:200px;
}
.myImg {
position: absolute;
left: 200px;
top: 100px;
height: 50px;
width:200px;
}i am using this properties but it is not working for me

.lookupicon {
position: relative;
top: 7px;
line-height:0px;
margin: 0px;
padding: 0px;
}

even i tried to decrese the line padding but no useGive the html and css you are using.
 
Back
Top