• css 小技巧


    checkbox:

    .checkbox {
      display: inline-block;
      cursor: pointer;
      input[type="checkbox"] {
        appearance: none;
        -webkit-appearance: none;
        outline: none;
        display: none
      }
      input[type="checkbox"]+.box-span {
        position: relative;
        top: 7px;
         24px;
        height: 24px;
        display: inline-block;
        background: url("../resource/images/radio/normal.png") no-repeat;
        background-position: 0 0;
      }
      input[type="checkbox"]:checked+.box-span {
        background: url("../resource/images/radio/click.png") no-repeat;
      }
    }
     
    隐藏滚动条:
    .outer-content {
      height: 100%;
       194px;
      position: absolute;
      top: 0;
      right: 0;
      overflow: hidden
    }

    .inner-content {
      height: 100%;
       177px;
      overflow-y: scroll;
      padding: 0 17px;
    }
  • 相关阅读:
    1 Anytao系列文章
    arraylist使用
    安装SQL 2005 的前提条件
    div+css
    Web MVC框架的三种类型
    使用javascript做页面间传值
    应用程序框架设计
    利用UrlRewrite,asp.net动态生成htm页面
    收集
    dwr配置
  • 原文地址:https://www.cnblogs.com/brainworld/p/7905018.html
Copyright © 2020-2023  润新知