Javascript原生base64编码解码函数btoa(atob)用法
window.btoa
和window.atob
分别编码与解码base64
,它们在现代浏览器中受到广泛的支持。
css扩展语言通过变量声明媒体查询
scss
1 | $mobile: 'only screen and (max-device-width: 720px), |
Less
1 | @mobile: ~"only screen and (max-device-width: 720px), only screen and (-webkit-min-device-pixel-ratio: 1.5) and (max-width: 720px)"; |
postcss
1 | @custom-media --mobile only screen and (max-device-width: 720px), |
移动端fixed和input获取焦点软键盘弹出影响定位的问题
在移动端使用fixed将按钮定位在底部时,当input获取焦点弹出软键盘时,在安卓系统会奖底部的按钮顶上去。效果图:
元素旋转90度后居中
1 | <div class="outer"> |
div.outer是一个窄垂直条。 div.inner旋转90度。我想要文本居中?出现在其容器div.outer中心。不确定div.outer的大小。
See the Pen qodqzq by Jake (@JakeLaoyu) on CodePen.
横向视频在手机垂直时全屏播放
通过监听window.orientation
,让视频在手机上保持全屏播放
ios微信background-attachment失效解决
1 | body:before{ |
nth-child用法
nth-child
是个神奇的东西,但是总会忘记一些常用的用法。