I want to put two divs next to each other in one block of fixed width. The right div is variable length (unknown one line text). The left div contains an image background (nice dash) and must fill up the remaining space.
Here is illustration of the problem:
|<--- 400px --->|
+---------------------------------+
| |
| ----------------- Variable text |
| |
+---------------------------------+
Sample HTML:
<div id="parent">
<div id="left"></div>
<div id="right">some text</div>
</div>
NOTE: right div MUST have transparent background!
Thanks