Combining fixed and variable width columns in one table
问题 How can I create a table with CSS like the following (the first three columns with a fixed width in px and the following columns with a width in %): I know how I can create a column with variable or fixed width. 回答1: Nest another table for the 4 columns on the right. The HTML structure would look like: <table class = "big first"> <tr> <td class = "px10">Cell1</td> <td class = "px20">Cell2</td> <td class = "px30">Cell3</td> <td> <table class = "big"> <td>1</td><td>2</td><td>3</td><td>4</td> <