How can I make the table with 2 columns (cells) look like this:
I know this was asked years ago. The OP probably have solved it by now. But this could still be helpful to someone. So I'm posting what worked for me. Here's what I did with mine. I set the width to anything near zero, to shrink it, then set the white-space to nowrap. Solved.
td {
width:0.1%;
white-space: nowrap;
}