Responsive Table
Fazlaca yazmaktansa kod örneğini eklemeyi tercih ettim. stillendirme olarak scss kullandım sadece css halini alta kod olarak ekledim.
uyarlanmış css hali
.responsive-table {
width: 100%;
overflow-x: auto;
}
.responsive-table table {
border: 0;
background-color: transparent !important;
width: 100%;
}
@media (max-width: 575.98px) {
.responsive-table table thead {
border: none;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
.responsive-table table tbody tr {
display: block;
margin-bottom: 0.625em;
}
.responsive-table table tbody tr td {
display: block;
text-align: right !important;
height: auto;
padding: 6px 5px;
}
.responsive-table table tbody tr td:before {
content: attr(data-label);
float: left;
font-weight: bold;
}
}
Yorumlar
Yorum yapmak için giriş yapın