Word wrap function not working in chrome state

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)

+4
source share
2 answers

maybe add property word-wrap: break-wordin css

+2
source

Try this property to css

word-break: break-all;
+2
source

Source: https://habr.com/ru/post/1532780/


All Articles