摘要: 方法一:控制图片外框高度,让布局正常,图片不出现拉伸 <div class="left_img"> <img class="img-responsive center-block" src="img/index/j.png" alt="" /> </div> .section3 .left_img 阅读全文
posted @ 2020-06-12 15:58 嘆世殘者——華帥 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 数组拷贝 var a = [a, b, c], b; # 1、数组遍历 b = new Array(); for (var i = 0; i < a.length; i++) { b.push(a[i]); } # 2、concat() b = [].concat(a); # 3、slice b = 阅读全文
posted @ 2020-06-12 12:52 嘆世殘者——華帥 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 多行文本溢出显示省略号 <style type="text/css">.section3 .title_leftDiv { height: 42px; margin-bottom: 10px;}.section3 .text_leftDiv { margin-bottom: 10px; height 阅读全文
posted @ 2020-06-12 11:27 嘆世殘者——華帥 阅读(98) 评论(0) 推荐(0) 编辑