Hello,
I am trying to border-collapse on a specific table.
#profitlosstbl table {
width: 200px;
border-collapse: collapse;
}
#profitlosstbl td {
border-collapse: collapse;
width: 100%;
padding: 10px;
font-size: 12px;
border: 1px solid black;
}
the border-collapse: collapse;
It only works if I use
table {
border-collapse: collapse;
}
but I cannot do this since it will mess up the other tables.
What should I do?