stuked with fixed width, any solutions pls
hi,
My <td> size is 40px now if in that <td> one complete string (without spaces) is shown up which is more then 40px, the td gets extended, I dont' want the td to get resized, but the text to wrap up. (mind it , it is string without any spaces).
I tried:
1) "table-layout:fixed" in css, this actually fixed the td size but the string got truncated/hidden after the specified size. moreover, in mozilla it's not working.
2) i also tried to put
.mywidth {
max-width:100px; /* for standards-compliant browsers */
width:expression(document.body.clientWidth > 100? "100px": "auto" ); /* max-width expression for IE only */
}
but no go.........
is there any solution for this?

