How can I make the table with 2 columns (cells) look like this:
You can set the width of the second cell to 100%
width
100%
HTML:
foo bar
CSS:
table { width: 500px; } .grow { width: 100%; }
Check this fiddle out.