摘要:
1、单行文本溢出用省略号代替 .content { width: 300px; border: 1px solid red; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } 2、多行文本溢出后最后一行用省略号代替 < 阅读全文
摘要:
首先,先看一个现象:为什么图片与父元素的底部会有一个缝隙呢?即使给父元素设置了padding仍不起作用。 因为这个缝隙并不是由于padding导致的。 <div class="line-wrap"> <img src="./images/icon_plane.png" /> </div> 这个缝隙, 阅读全文