1、ios 中有长按可以打开链接功能,如果阻止a标签默认事件,不要把链接写到href里,长按还是能打开。
如果有需要做feature AB的情况,也不要把链接写在a标签的href中,否则点击可以阻止,但是长按还可以跳转。

2、字体颜色渐变样式需要注意:

1)写在具体的需要渐变文字的标签里,不能写在父级元素上,IOS 15.3及以下系统手机不支持,字体不会显示。
  如下面代码,需要把样式写在never-text 和never-fee元素上,而不是写在父级元素never-tip上。
2)需要写color样式做兼容,以便不支持该样式的设备也可以正常显示文字
<div class="never-tip">
    <span class="never-text">You could save $260 throughout the year.</span>
    <span class="never-fee">Only € 19.99/year</span>
</div>
<style>
  color: #E0BB83;
  background: linear-gradient(135deg, #F4E1B3 0%, #DBB278 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
</style>
````
![样式没做兼容,有问题的情况](https://upload-images.jianshu.io/upload_images/24159983-1f1ecb47aa258b6a.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
![正常展示情况](https://upload-images.jianshu.io/upload_images/24159983-a818302fa6ea7786.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

纷橙
13 声望1 粉丝