手机预览可使用 草料官网,手机和电脑需要在同一个局域网下。
文件结构
1 | │ index.css |
这里使用的是 stylus 预处理,真正实现了移动端一像素的 border
这里的公共样式放在了 common 文件夹下, common/index.styl 为导出口,根目录下的 index.styl 只需导入 common/index.styl 就可以了。
HTML 部分代码
1 | <div class="tab border-1px"> |
根目录下的 index.styl
1 | // 引入公共的文件 |
common 文件夹下的 base.styl
1 | // 适配不同机型 dpr |
common 文件夹下的 index.styl
1 | // 公共的文件出口 |
common 文件夹下的 mixin.styl
1 | // 设置伪元素, 1px 的下边框 |
编译后的 CSS
根目录下的 index.css
1 | @media (-webkit-min-device-pixel-ratio: 1.5), (min-device-pixel-ratio: 1.5) { |
参考