zoukankan      html  css  js  c++  java
  • reset 移动端

    html,
    body,
    ul,
    li,
    p,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      margin: 0;
      padding: 0;
    }
    
    ::-webkit-scrollbar {
      display: none;
    }
    
    ul,
    li {
      list-style: none;
    }
    
    html {
      height: 100%;
      min-height: 100%;
    }
    
    body {
      font-family: "Pingfang SC", LiHei Pro Medium, "Microsoft YaHei", "微软雅黑",
      arial;
      font-size: 24px;
    
      position: relative;
    
      min-height: 100%;
    
      user-select: none;
    
      color: #000000;
    
      -webkit-tap-highlight-color: transparent;
      -webkit-text-size-adjust: none;
      -webkit-touch-callout: none;
      -moz-user-select:none;
      -webkit-user-select:none;
      user-select: none;
      height:100%;
    }
    a,button,input,textarea{
      border: none;
      outline: none;
      -webkit-tap-highlight-color: rgba(0,0,0,0);
      -webkit-user-modify:read-write-plaintext-only; 
    }
    input[type=number]::-webkit-textfield-decoration-container {
        background-color: transparent;    
    }
    input[type=number]::-webkit-inner-spin-button {
         -webkit-appearance: none;
    }
    input[type=number]::-webkit-outer-spin-button {
         -webkit-appearance: none;
    }
    
    
    a:hover,
    a:visited,
    a:link,
    a:active {
      text-decoration: none;
    }
    
    @font-face {
      font-family: DIN;
    
      src: url(///font/DINCond-Regular.otf);
    }
    
    @font-face {
      font-family: DIN-Light;
    
      src: url(///font/DINCond-Light.otf);
    }
    
    @font-face {
      font-family: DIN-Medium;
    
      src: url(///font/DINCond-Medium.otf);
    }
    
    @font-face {
      font-family: DIN-Bold;
    
      src: url(///DIN_Condensed_Bold.ttf);
    }
    
    
  • 相关阅读:
    JAVA并发-CountDownLatch
    【转载】Makedown数学公式语法
    算法的时间复杂度
    JVM-卡表(Card Table)
    sync.WaitGroup的使用以及坑
    go 多协程爬取图片
    go ioutial 读取写入文件
    go 下载图片
    go 正则 爬取邮箱代码
    go 解析path
  • 原文地址:https://www.cnblogs.com/sybboy/p/12207244.html
Copyright © 2011-2022 走看看