-webkit-overflow-scrolling: touch; /* 当手指从触摸屏上移开,会保持一段时间的滚动 */

-webkit-overflow-scrolling: auto; /* 当手指从触摸屏上移开,滚动会立即停止 */

-webkit-tap-highlight-color 是一个没有标准化的属性,能够设置点击链接的时候出现的高亮颜色。显示给用户的高光是他们成功点击的标识,以及暗示了他们点击的元素。

/* 启用 small-caps */
.ex1 { font-feature-settings: "smcp" on; }

/* 将大写和小写都转换为小型大写字母 */
.ex2 { font-feature-settings: "c2sc", "smcp"; }

/* 没有常见的连字 */
.ex3 { font-feature-settings: "liga" 0; }

/* 启用自动分数 */
.ex4 { font-feature-settings: "frac"; }

font-variant:small-caps; 把段落设置为小型大写字母字体

CSS属性 touch-action 用于设置触摸屏用户如何操纵元素的区域

text-rendering告诉渲染引擎工作时如何优化显示文本。 浏览器会在渲染速度、易读性(清晰度)和几何精度方面做一个权衡。


button,select {
text-transform: none
}

[type=reset],[type=submit],button,html [type=button] {
-webkit-appearance: button
}

[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner {
padding: 0;
border-style: none
}

input[type=checkbox],input[type=radio] {
box-sizing: border-box;
padding: 0
}

input[type=date],input[type=datetime-local],input[type=month],input[type=time] {
-webkit-appearance: listbox
}


[role=button],a,area,button,input:not([type=range]),label,select,summary,textarea {
touch-action: manipulation
}

table {
border-collapse: collapse
}


text-decoration-skipnone | [ objects || spaces || ink || edges || box-decoration ]


[class*=ant-]::-ms-clear,[class*=ant-] input::-ms-clear,[class*=ant-] input::-ms-reveal,[class^=ant-]::-ms-clear,[class^=ant-] input::-ms-clear,[class^=ant-] input::-ms-reveal {
display: none
}

[class*=ant-],[class*=ant-] *,[class*=ant-] :after,[class*=ant-] :before,[class^=ant-],[class^=ant-] *,[class^=ant-] :after,[class^=ant-] :before {
box-sizing: border-box
}

body,html {
width: 100%;
height: 100%
}

input::-ms-clear,input::-ms-reveal {
display: none
}

*,:after,:before {
box-sizing: border-box
}

html {
font-family: sans-serif;
line-height: 1.15;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
-ms-overflow-style: scrollbar;
-webkit-tap-highlight-color: rgba(0,0,0,0)
}

@-ms-viewport {
width: device-width
}