Interesting...
So, how then, would I do the above but in CSS???
If the idea I had was not valid XHTML...I'm at a complete loss...
At first I thought of using a UL/LI combo, but I'm not sure thats ideal for controls...
Ideally I want a toolbar, which looks something like:
Code: Select all
<td width="100%" align="center">Click here to register</td>
<td>email</td>
<td><input type="text" size="25" /></td>
<td>pass</td>
<td><input type="password" size="8" /></td>
<td><input type="submit" value="Login" /></td>
In that it takes up all width available, flush with it's container elements and the first TD is variable width as the message inside of it changes...
I don't like UL/LI because they often break in my designs onto new lines, which throws everything off, especially if I don't indicate the
background-image: repeat-y only...
Is there a way to accomplish such a toolbar using DIV's? is it better to use LI???
Thanks again...