css-fuctions-summary

  1. 模糊背景: filter: blur(8px);
  2. iOS禁止长按触发js:-webkit-touch-callout:none;
  3. iOS除了body外 默认都是正常滑动 没有惯性 想更顺滑:-webkit-overflow-scrolling: touch;
  4. ol li 前面的数字默认是以数字内侧对齐 我们想改成左对齐 这样就不会有下载简历之后前面的数字被截掉的问题了 在li的style上加: list-style-position: inside;