several ways to put space between table rows CODE
fThe First way is to use
border-spacing
property
table {
    border-collapse:separate;
    border-spacing:0 15px;
}
Another way is to put additional separator TRs
<tr class="separator" />
between rows
.separator {
    height: 10px;
}
Third way is to use
margin-bottom
property
tr { 
    display: block;
    margin-bottom: 15px;
}
by Valeri Tandilashvili
4 years ago
CSS
table
4
Pro tip: use ```triple backticks around text``` to write in code fences
0
გიორგი უზნაძე 4 years ago
ამის გაშვება დამასწარი ვალერ როგორც ჩანს :D
REPLY
Show 1 reply