My website contains multiple tables with default styling defined in the style.css file as follows:
table,
th,
td {
border: 1px solid rgba(0, 0, 0, 0.1);
}
table {
border-collapse: separate;
border-spacing: 0;
border-width: 1px 0 0 1px;
margin-bottom: 24px;
width: 100%;
}
However, I have a specific table for which I want to override these default settings by removing the border entirely. I tried using the following code:
table.checkmarkarray {
border-width: 0 0 0 0;
}
Unfortunately, this did not succeed in overriding the previous border-width property. How can I achieve this without altering the default value?