Hi, I would like to create an image that will be seen above an input tag.
I mean that I put an input tag in the dom, immediately after I put an img tag, and I want to move the position of the image to the position of the input tag so that people will see the image above the input tag.
How can I do that so people will still see the image?
I agree that the original message was unclear, but I suspect programAngel actually meant "in front of" instead of vertically above the Submit button. I was going to suggest a z-index solution, along with a request for clarification - including why he wanted to do it.
ya the question is unclear regarding the problem and requirement. My suggestion is to keep the <img> tag and <input> tag in ont <div> tag. So the image will shown consistently with input like
<div>
<img>
<input>
</div>
Bookmarks