我有一个没有空格的大线,当屏幕变小时,文本隐藏在chrome上是否有任何方法可以在下一行中删除它,以下是我的代码(Fiddle) HTML:
<a href="http://www.findyogi.com/laptops/dell/allSpecs/f_price_28500:34500_page_0" target="_blank">http://www.findyogi.com/laptops/dell/allSpecs/f_price_28500:34500_page_0</a><br><br><br>
<a href="http://www.findyogi.com/laptops/dell/dell-inspiron-15-3521-ci3-4gb-500gb-linux-b942ed/price" target="_blank">http://www.findyogi.com/laptops/dell/dell-inspiron-15-3521-ci3-4gb-500gb-linux-b942ed/price</a>
它在firefox上工作得很好,但有些人如何不使用chrome。我确信我错过了一些CSS syles
答案 0 :(得分:3)
将它添加到您的小提琴中的CSS并重新尝试:
a {
word-wrap: break-word;
}