摘要: 说到CSS文字垂直居中,很多初学者都喜欢用调整行高等于div高度的方式来达到效果,div { height:30px; line-height:30px;}但其实这么做会遇到一个问题:多行文本溢出父元素。所以还是使用div{ padding:8px 0;}的... 阅读全文
posted @ 2019-02-24 17:44 YooHoeh 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 单行省略div { white-space:nowrap; //断行处理:无断行 text-overflow:ellipsis; //文字溢出处理:省略号 overflow:hidden; //溢出处理:隐藏}多行省略非IE和火狐div { display:... 阅读全文
posted @ 2019-02-24 17:11 YooHoeh 阅读(592) 评论(0) 推荐(0) 编辑
被你发现了?