i work in local, this is my css table code:
/* ——————————————–
TABLE SHORTCODE
——————————————– */
table.sf-table {
width: 100%;
display: table;
}
table.striped_minimal tr:nth-of-type(even), table.striped_bordered tr:nth-of-type(even) {
background-color: #f7f7f7;
}
table.sf-table th {
padding: 10px 20px;
text-transform: lowercase;
letter-spacing: 1px;
font-weight: normal;
vertical-align: middle;
text-align: left;
}
table.sf-table td {
padding: 10px 20px;
}
table.standard_minimal th {
padding: 10px 30px 10px 0;
border-bottom: 2px solid #e4e4e4;
}
table.striped_minimal th {
padding: 10px 30px 10px 0;
border-bottom: 2px solid #e4e4e4;
}
table.standard_minimal td {
padding: 10px 30px 10px 0;
border-bottom: 1px solid #e4e4e4;
}
table.striped_minimal td {
padding: 10px 30px 10px 0;
border-bottom: 1px solid #e4e4e4;
}
table.standard_bordered, table.striped_bordered {
border: 1px solid #e4e4e4;
}
table.standard_bordered tr, table.striped_bordered tr {
border-top: 1px dotted #e4e4e4;
}
table.standard_bordered th, table.standard_bordered td, table.striped_bordered th, table.striped_bordered td {
border-left: 1px dotted #e4e4e4;
}
table.striped_bordered th, table.striped_bordered td {
border-top: 0;
}