I have a 4 row 1 column table that I want to Anchor to the left, right, top, bottom of the browser. The rows need to different heights. Does anyone known the best way to do this, with css?
Left and right is easy, but the top and bottom might be a pain. For left and right you just do table tr td { width: 25%; } HTML: <table> <tr> <td>Left</td> <td>Middle</td> <td>Right</td> <tr> </table> HTML: I'm not sure of the issue with top and bottom, so I'll see if anyone else replies about that part.