I use the following style sheet code to achieve word wrapping in a table column:
<style type="text/css">
table,td {
table-layout: fixed;
}
</style>
This code works well in firefox, and I can achieve word wrapping, but when I tried it in the Chrome browser, it does not work.
Can you suggest how to make it work in all browsers (IE, firefox, chrome)
source
share