随笔分类 - css
摘要:这样书写之后编译成微信小程序时会出现一下情况 造成此类原因是因为 我们直接给了一个对象而不是字符串(即直接给字符串不会出现此类问题) 而微信不能直接识别 所以直接在动态赋值时加上中括号
阅读全文
摘要:// 安卓body{ -webkit-tap-highlight-color:rgba(0,0,0,0); } //IOS a:focus,input:focus,p:focus,div:focus{ -webkit-tap-highlight-color:rgba(0,0,0,0); -webki
阅读全文
摘要:var swiper = new Swiper(".myswiper_fx", { slidesPerView: 'auto', freeMode: true, speed:6000, autoplay: { delay: 2500, disableOnInteraction: false, },
阅读全文
摘要:超出最大宽度的flex盒子 不可使用justify-content属性 否则会出现移动端时拉不到头的问题
阅读全文
摘要:单行 overflow: hidden; text-overflow: ellipsis; white-space: nowrap; 多行 overflow : hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-c
阅读全文