zoukankan      html  css  js  c++  java
  • vue 中公共样式

    html, body, h1, h2, h3, h4, h5, h6, p, textarea, input, select, ul, ol, li, fieldset, figure {
      margin: 0;
      padding: 0;
      border: none;
    }
    html,body{
      height: 100%;
    }
    ul, li {
      list-style: none; }
    
    
    body,
    textarea,
    input,
    select {
      font-size: 14px;
      color: #222222;
    
      font-weight: normal;
     font-family:"Helvetica Neue", Helvetica, STHeiTi, 'Microsoft Yahei',sans-serif;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      outline: none; }
    
    a {
      text-decoration: none;
      -webkit-transition: all 0.25s ease;
      -moz-transition: all 0.25s ease;
      -ms-transition: all 0.25s ease;
      -o-transition: all 0.25s ease;
      transition: all 0.25s ease; }
    img {
        border: none; }
    
    div{
    -webkit-highlight:none;
    -webkit-tap-highlight-color:transparent;
    -webkit-user-select:none;
    }
    a{
    -webkit-highlight:none;
    -webkit-tap-highlight-color:transparent;
    -webkit-user-select:none;
    text-decoration:none;
    color:#000;
    }
    
    .clearfix:after {
        content: ".";
        display: block;
        height: 0;
        clear: both;
        visibility: hidden;
    }
    input[type="button"], input[type="submit"], input[type="reset"],input[type="text"],input[type="tel"] {
      -webkit-appearance:none;/*清除ios默认圆角*/
      border-radius:0;
      }
    
      textarea {  -webkit-appearance: none;}
      /* .button{ border-radius: 0; } */
    
    
    .clear{
      overflow: hidden;
      zoom: 1;
    }
    .float-l{
      float: left;
    }
    .float-r{
      float: right;
    }
    

      

  • 相关阅读:
    as3 变量默认值
    as3 判断移动方向
    as3 根据鼠标移动方向
    as3 XML类和XMLList类的区别
    as3 文档类判断是否被加载
    AS3获取对象类名,getDefinitionByName,getQualifiedClassName,getQualifiedSuperclassName
    as3 object与dictionary区别
    吹芯片
    stm32四种输入
    usart和uart 的区别
  • 原文地址:https://www.cnblogs.com/panax/p/11793402.html
Copyright © 2011-2022 走看看