I am trying to display list in Table. But text overflow issue raised. How to fix this issue with css, Kindly guide me.
.pkgtable{
width: 100%;
table-layout: fixed;
}
.pkgtable th, td {
vertical-align: top;
}
.pkgtable ul{
font-size: 10px;
line-height: 20px;
width: 100%;
list-style-type: square;
}
.pkgtable li{
margin-left: -12px;
text-align: left;
text-transform: uppercase;
}
2
Answers
Do you have try to implement your lists in a div ?
Add word-wrap and overflow properties to the table cells to handle long text:
Note:- if you will get any further issues change the above css as per your scenario, mainly you have to play with overflow and word-wrap properties.