This doesnt work
<form style ='display:inline;'>
<input type = 'submit'/>
</form>
<form style ='display:inline;'>
<input type = 'submit'/>
</form>
I want two forms that submit to different scripts and each have an input button to display inline.
I want to style it inline as someone else will make more permanent changes to the main CSS file what am I doing wrong?
I think what you want is to display them side by side. You can do it using floats instead like so:
But even that’s not ideal. What would be best is to wrap each < form > in < div >s and use float in the div tag instead.