I have a html template where it has :
table
thead
tr
th
th
th
tbody
tr
td
td
td
My th, who contains titles of table, have properties: width="180"
for the first one and the second one, and width="360"
for the third.
I have long texts in the third td tag below tr, but it overflows a lot. How can I handle it, for having my column with a fixed width (360)? I already tried many things that I read from other topics, but nothing worked: position: fixed, overflow: hidden
and etc, etc.
Thanks.