admin
Administrator
     
Offline
Posts: 238
|
 |
« on: January 20, 2021, 07:00: PM » |
|
This won't change columns or row settings but its the first thing I've found that quickly handles scaling of a table in a responsive manner. Not meant for big tables either.
"<table width="90%" border="0" class="table_text">"
.table_text { font-size: 12px; }
@media screen and (min-width: 480px) { .table_text { font-size: 9px; } } @media screen and (min-width: 640px) { .table_text { font-size: 12px; } } @media screen and (min-width: 1024px) { .table_text { font-size: 14px; } }
|