This question already has answers here:
What is the difference between “word-break: break-all” versus “word-wrap: break-word” in CSS
                                
                                    (10个答案)
                                
                        
                                5年前关闭。
            
                    
当我有较长的URL链接时,它将中断并溢出父容器。

<a href="">http://www.example.com/somg-looooooooooooooooooooooooooooooooooong-url</a>


为了解决这个问题,我尝试在CSS中使用以下任一方法。他们两个都可以。

自动换行

a {
   word-wrap: break-word;
}


断字

a {
   word-break: break-all
}


自动换行和自动换行有什么区别?哪个比另一个更好?

最佳答案

您可能会注意到并没有什么区别,但是自动换行是更常用的标准,而且有趣的是,存在断行作为替代方式,只能处理亚洲(中文,日文等)字符的断字

关于html - 自动换行和断字之间的区别,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24576708/

10-12 00:17