Адаптивная таблица на чистом CSS

@media screen and (max-width: 950px) { table { border: 0; width: 100%; display: table !important; } table thead { display: none; } table tr { margin-bottom: 10px; display: block; border-bottom: 2px solid #ddd; } table td { display: block; text-align: right !important; font-size: 13px; border-bottom: 1px dotted #ccc; &:last-of-type { text-align: center !important; } }…