CSS : how to wrap content in the td for a table
๐ how to wrap content in the td for a table
- ๐ท๏ธTags : #17-05-2022, #pending #completed #permanent
๐ Links
Problem
- content in the table , is much so because of that the table is becoming wide and there is a scrollbar at the bottom
Solution
- we have to wrap the content of the td
td {
/* css-3 */
white-space: -o-pre-wrap;
word-wrap: break-word; /* only this one change works for me */
white-space: pre-wrap;
white-space: -moz-pre-wrap;
white-space: -pre-wrap;
}
- modify the table layout
table {
table-layout: fixed;
width: 100%
}
ย