tabla responsive css
@media screen and (max-width: 320px) {
table {
display: block;
overflow-x: auto; }
}
tabla responsive css
@media screen and (max-width: 320px) {
table {
display: block;
overflow-x: auto; }
}
table responsive
/*
Generic Styling, for Desktops/Laptops
*/
table {
width: 100%;
border-collapse: collapse;
}
/* Zebra striping */
tr:nth-of-type(odd) {
background: #eee;
}
th {
background: #333;
color: white;
font-weight: bold;
}
td, th {
padding: 6px;
border: 1px solid #ccc;
text-align: left;
}
table responsive
<table>
<thead>
<tr>
<th>First Name</th>
<th>Last Name</th>
<th>Job Title</th>
</tr>
</thead>
<tbody>
<tr>
<td>James</td>
<td>Matman</td>
<td>Chief Sandwich Eater</td>
</tr>
<tr>
<td>The</td>
<td>Tick</td>
<td>Crimefighter Sorta</td>
</tr>
</tbody>
</table>
responsive table css
/* Responsive*/
/* 992px - 1200px */
@media screen and (max-width: 1200px) {
}
/* 768px - 992px */
@media screen and (max-width: 992px) {
}
/* 576px - 768px */
@media screen and (max-width: 768px) {
}
/* 0 - 576px */
@media screen and (max-width: 576px) {
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us