I am struggling with aligning buttons to the right side of a div while keeping everything displayed in line. Currently, the buttons appear below the span rather than beside it. I have attempted setting the button's display to "inline" and "inline-block", but neither seems to produce the desired result. Can anyone provide guidance on how to achieve this?
<div>
<span>blah</span>
<input type="submit" name="button2" value="button2" class="floatRight" />
<input type="submit" name="button1" value="button1" class="floatRight" />
</div>
The class "floatRight" is :
.floatRight { float: right }
I am using IE 11