demo20230512/Browser_Local/css/normal_table.css

33 lines
567 B
CSS
Raw Normal View History

2023-05-12 10:20:28 +08:00
.normal_table {
width: 100%;
font-size: 14px;
}
.normal_table > thead > tr > th, .normal_table > tbody > tr > td {
border: 1px solid rgb(194, 194, 194);
vertical-align: middle;
padding: 8px;
text-align: center;
}
.normal_table > thead > tr > th {
border-top: 0;
background: rgb(230, 230, 230);
color: rgb(107, 107, 107);
}
.normal_table > tbody > tr > td {
border-bottom: 0;
}
.tableBottom {
border-bottom: 1px solid rgb(194, 194, 194);
}
.comment_td {
width: 50px;
}
form div.row > label {
cursor: default;
}