This is the CSS of my Table:
#customers {
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
border-spacing: 0;
width: 100%;
}
#customers td, #customers th {
padding: 8px;
text-align: center;
}
#customers tr:nth-child(even){
background-color: #f2f2f2;
}
#customers tr:hover {
background: #e8f2fd;
transition: all 0.1s ease-in-out;
}
#customers th:first-child {
border-radius: 8px 0 0 0;
}
#customers th:last-child {
border-radius: 0 6px 0 0;
}
#customers th:only-child{
border-radius: 6px 6px 0 0;
}
#customers th{
background-color: #00889f;
color: white;
}
Which is as follows:
But the reason I come to ask for your help is this: How do I give color only to the edge of my board? The only thing that interests me is to give a color to the entire contour of my table (but not the inside) since I am using the border-radius and when entering > border-style alters my table and disappears the design that I assign, below I show how the border is from my outline :
I hope you can help me. Thanks.