The following is my code
table { border: 1px solid; width: 20.5%; }
<table > <tr> <th align = "left">Ann-Maree Smith </th> <th align = "left">Mitz Perez</th> </tr> <tr> <td>Bld 40:133, Wollongong</br>Campus </td> <td>Bld 4:105, Wollongong</br>Campus</td> </tr> <tr> <td>(02) 4221 4714 </td> <td>(02) 4221 3833 </td> </tr> <tr> <td>Mon-Fri</td> <td>Mon-Fri</td> </tr> <tr> <td>ams@uow.edu.au</td> <td>mperez@uow.edu.au</td> </tr> </table>
I'm trying to achieve this effect [1]: https://i.stack.imgur.com/qnBdQ.png However, my table only has one border, missing the "column borders", instead of the double borders seen in the picture. I'd like to know the best way to achieve the effect I want.
You need to change the structure of the table because you basically want a solid border around the table cells and then a solid border around the entire table, otherwise you'll get boxes at the corners.