У меня есть
<div style="width:100%"> <span>some text</span> <input style="position:relative; right:0px;" type="button"/> </div>
Div должен быть относительным, а кнопка абсолютной.
<div style="width:100%; position: relative;"> <span>some text</span> <input style="position:absolute; right: 0px;" type="button"/> </div>