I currently have a table within my page at : http://www.fir3net.com/Firewalls/Juniper-Netscreen/juniper-commands.html
The first 2 tables have been assigned a class of X1. My aim is to do the following :
- Set the table to a width of 85%
- Set the first column to a set width
- Set a black border around each cell with no spacing
So far I have the following CSS :
table.X1 {
width: 85%;
}
table.X1 td {
border: 0.1em solid black;
}
Can anyone help me out with the rest. Im tried border-collapse and border-spacing but they fail to work (??).
Thanks in advance...