加载中
css段落结尾的省略号

display: -webkit-box; -webkit-line-clamp: 3; text-overflow: ellipsis;

2018/01/31 11:03
811
css 阻止页面滚动

$('html').css('overflow','hidden'); $('html').css('height','100%'); $('body').css('overflow','hidden'); $('body').css('height','100%');...

2017/11/29 17:36
845
div垂直居中

css3的方法(如果只用在手机端,足够了) display: -webkit-flex; align-items: center;//子元素垂直居中 justify-content:center;//子元素水平居中 兼容ie8的方法 <div class="father"> ...

2017/11/09 21:32
83
css3: calc 函数,动态调整数值

#div1 { position: absolute; left: 50px; width: calc(100% - 100px); border: 1px solid black; background-color: yellow; padding: 5px; text-align: center; } https://www.w3schools.c...

2017/10/20 17:28
355

没有更多内容

加载失败,请刷新页面

没有更多内容

返回顶部
顶部