Files
airtime-reseller/public/theme_assets/styles/custom_fixed_tables.css
Kwesi Banson Jnr 2cfcfade4e Initial commit
2026-08-04 14:50:01 +00:00

16 lines
375 B
CSS

table {
table-layout: fixed;
}
.custom-fixed-table {
table-layout: fixed; /* Forces equal width distribution if no specific widths are set */
width: 100%; /* Ensures the table spans its container width */
}
td, th {
white-space: normal !important;
word-wrap: break-word; /* For older IE versions */
overflow-wrap: break-word; /* Standard property */
}