Skip to content
On this page

Reset

一些抹平浏览器之间差异的 css。

使用

ts
import 'ufuse/src/css/reset/index.css'

源码

css
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  /* 禁止拖拽 */
  -webkit-user-drag: none;
}

button {
  background-color: transparent;
  outline: none;
  border: none;
}

input{
  border-radius: 0;
  -webkit-appearance: none;
}

ul,
li {
  list-style: none;
}

贡献者

xieyuhang