I noticed that my table, in which i set a border-collapse:collapse and border-bottom: 1px solid grey, has a thicker line between the rows every 5th row. How can I get them to also be 1px?
I also noticed that I cannot set a border-radius. Why is that?
Here's my code:
.list table {
margin: 0 auto;
width: 95%;
border-collapse: collapse;
border: 2px solid black;
border-radius: 10px; //HAS NO EFFECT
}
.list th, .list td {
border-bottom: 1px solid grey;
padding: 10px;
}