Currently, I have a table where I am utilizing CSS to display a bottom border.
.inset {
border-bottom: 1px solid #dadce0;
}
I am aiming to have some padding on the left and right sides similar to using a
<hr align="center" width="80%">
, but I haven't been successful in achieving this.
Are there any particular properties or CSS techniques that I should explore to maintain the table's structure while having a centered bottom border that occupies only 80% of the table width?