Hi,
I have an email that has multiple different HTML tables in.
I have the following style added to each of them (copied from an online tutorial and edited to be what i would like)...
But, I tried to adapte without success,
I trie to have all tables (max 4) with the same style,
Each table has 5 columns
First column has to be larger than the other 4 (for all tables)
The second bit more larger than the Third one.
The fourth and fith equals,
So I want to adapt myself and fixed for larger
I tried many proposition but each time without success,
Could you help me on this ?
My code just below :
<style>
table {
border: 1px solid #000000;
background-color: #Ffffff;
width: 100%;
text-align: centre;
border-collapse: collapse;
}
table td, table th {
border: 1px solid #000000;
padding: 1px;
text-align: centre;
}
table tbody td {
font-size: 15px;
}
table thead {
background: purple;
border-bottom: 1px solid #000000;
}
table thead th {
font-size: 15px;
font-weight: bold;
color: #Ffffff;
border-left: 1px solid #000000;
}
table thead th:first-child {
border-left: none;
}
</style>
Regards