D
Dave
When I using the following HTML code....
<INPUT type="text" id=text1 >
<span id="id1"> this is a textbox </span>
<div id="id2">div tag</div>
....the output is displayed as three lines like...
<Textbox>
this is a textbox
div tag
I would like to have all 3 display on single line,
How can I get them to display on a single line and still keep my DIV tags?
<INPUT type="text" id=text1 >
<span id="id1"> this is a textbox </span>
<div id="id2">div tag</div>
....the output is displayed as three lines like...
<Textbox>
this is a textbox
div tag
I would like to have all 3 display on single line,
How can I get them to display on a single line and still keep my DIV tags?