In the following code snippet:
<span style="width:250px">test</span><span>test2</span>
I want 'test' to occupy 250 pixels without changing the size of the text. In other words, I would like the word 'test' to print, followed by however may pixels is required to reach a total width of 250 pixels (test + blank space) then the word 'test2' to print afterwards. What CSS do I use to achieve this?