I am looking for a way to place the input control just after the word "number" (in the same line).
<!DOCTYPE html>
<html>
<body>
<div id="this_can_be_updated">
Hello.<br/>
This is some text. I need to put in the third line<br/>
the number
</div>
<input type="text" value="5">
</body>
</html>
Can this be done with css? With any other way?
Limitation: The div.innerHtml is updated dynamically with javascript (using its id). So i guess i cannot put the input tag inside the div.