@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) { /*____________________________________________________TABELE________________________________________________*/ /* Force table to not be like tables anymore */ #bills table, thead, tbody, th, td, tr { display: block; } /* Hide table headers (but not display: none;, for accessibility) */ #bills thead tr { position: absolute; top: -9999px; left: -9999px; } #bills tr { border: 1px solid #ccc; } #bills td { /* Behave like a "row" */ border: none; border-bottom: 1px solid #eee; position: relative; padding-left: 50%; } #bills td:before { /* Now like a table header */ position: absolute; /* Top/left values mimic padding */ top: 6px; left: 6px; width: 45%; padding-right: 10px; white-space: nowrap; } /* Label the data */ #bills td:nth-child(1):before { content: "Account: "; } #bills td:nth-child(2):before { content: "Balance: "; } #bills td:nth-child(3):before { content: "Currency: "; } #bills td:nth-child(4):before { content: "Checkbox: "; } #bills td:nth-child(5):before { content: "Action: "; } /*#currency td:nth-child(1):before { content: "Waluta: "; } #currency td:nth-child(2):before { content: "Kurs: "; }*/ }