If I have a very long line (no spaces!). Can I make the browser interrupt it, for example, in a table tdvia CSS. Width has no effect.
Note. I know that it is very unlikely that anyone would submit a long string without spaces, but you never know ...
I tried:
.gridrow td
{
padding: 1em;
text-align: center;
word-wrap: break-word;
}
and I use FF as my browser. word-wraponly used in CSS3?
source
share