My current table styling approach is as follows:
#content table {
width: 100%;
margin-top: 1em;
border-collapse: collapse;
border: 1px solid #222;
}
#content table td {
border: 1px solid #888;
padding: .3em;
}
I aim to create tables with a black outer border (#222) while having a lighter color (such as #888) for the inner borders. How can I achieve this design?