小常识
1.background中的 linear-gradient 兼容角度问题
background: linear-gradient(330deg, #f6663f 0%, #ed2151);
background: -webkit-linear-gradient(150deg, #f6663f 0%, #ed2151);
解决: 首先要将超过180deg转换成负值(上式中 应将330deg转换成-30deg),-webkit- 中 角度绝对值 与 正常中的角度 为180deg
2.选中字体变色
::selection {
color: #fff;
background: var(--main-color);
}
::-moz-selection {
background: var(--main-color);
color: #fff;
}
3.a链接跳转邮箱
4.去掉input 单选框 复选框默认样式
-webkit-appearance: none;