I need help figuring out how to display the cropped part of my text without using scroll bars in css.
For example:
td {
overflow: hidden;
}
The hidden content is important, but the table property is fixed.
table {
table-layout: fixed;
}
I want the text inside the <td>
to expand and adjust based on the height of the <td>
.