I want to put an icon on the left and an input type text on the right occupying all the remaining space.
----------------------------------------------------
| [ico] ---------------------------------------- |
| | input type="text" | |
| ---------------------------------------- |
----------------------------------------------------
If I set both with display: inline-block and set the input's width to 100% it jumps the line, because 100% is not considering the space - icosize...
I want to expand the input to the remaining available space (I don't care for vertical align). Is there a way to achieve this behavior without using tables?