强制换行word-break:break-all或者word-wrap:break-word都无效的解决方法
一、无效原因:
可能是元素中设置的white-space是norwrap,所以无法换行。
二、解决方法:将white-space的值设置成normal自动换行
white-space:normal; // this it is
word-break:break-all; //or word-wrap:break-word;
一、无效原因:
可能是元素中设置的white-space是norwrap,所以无法换行。
二、解决方法:将white-space的值设置成normal自动换行
white-space:normal; // this it is
word-break:break-all; //or word-wrap:break-word;