Is it possible to have a button overlapped on an input field in a responsive website like this: https://i.sstatic.net/tnVmF.png
I tried using an input group addons, but the result is not quite what I expected: https://i.sstatic.net/xpMgr.png
This seems to be due to the size of the image. Is there a way to center the input field within the button and reduce its size to match the desired output shown in the first image?
Here is the code snippet:
<div class="input-group ">
<span class="input-group-addon">
<img src="./images/record.png">
</span>
<input type="text" size="1" class="form-control" placeholder="REC" />
</div>