Two columns table : one as small as possible, the other takes the rest
问题 I have a to-columns table in a div : <div> <table> <tbody> <tr> <td class="action" > <a> ✔ </a> </td> <td class="content"> <p>Bigger text...(variable size).......</p> </td> </tr> <tr> <td class="action" > <a> ✔ </a><a> ✘ </a> </td> <td class="content"> <p>Bigger text...(variable size).......</p> </td> </tr> ... same structure in all the table </tbody> </table> </div> And I would like the "action" column to fit the content, and the "content" column to take the rest of available space. The