6
100% ширина таблиці переповнює контейнер Div
У мене виникають проблеми із таблицею html, яка переповнює її батьківський контейнер. .page { width: 280px; border:solid 1px blue; } .my-table { word-wrap: break-word; } .my-table td { border:solid 1px #333; } <div class="page"> <table class="my-table"> <tr> <th>Header Text</th> <th>Col 1</th> <th>Col 2</th> <th>Col 3</th> <th>Col 4</th> <th>Header Text</th> </tr> …
136
html
css
html-table