摘要:
### pc 端 初始化默认的一些样式; // res.css
```
*,::before,::after{ padding:0;margin:0; outline:none; -webkit-tap-highlight-color:transparent;
}
/* 改变盒子模型 */
*{ -webkit-box-sizing: border-bo... 阅读全文
摘要:
### 微信小程序默认公用样式样式类 app.wxss; ```
/* rpx单位表示 设计稿测量出来是多少就是多少 不用转换 */ /**app.wxss**/
page{font-size: 26rpx;font-family:sans-serif}
image{ width:auto;height: auto;}
page{ -webkit-box-sizing: borde... 阅读全文
摘要:
### 移动端 基于flex布局 的默认样式 rest css ; ```
*,::before,::after { padding: 0; margin: 0; outline: none; -webkit-tap-highlight-color: transparent; }
/* 所有元素的盒模型 */
*{ -webkit-box-sizing: borde... 阅读全文