Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

其他样式

  • outline

    • 定义表单中文本的轮廓线样式
    • 写法(类似border)
      outline: width style color;
      
    • 例子
      input[type="text"]:focus {
        outline: 1px solid red;
      }
      
  • initial

    • 把某个CSS属性重置回默认值
    • 写法
      某个CSS属性名:initial;
      
  • pointer-events

    • 禁用鼠标点击事件
    • 写法
      pointer-events: none;
      
    • 【例子】二维码发送按钮
      .disable {
        pointer-events: none;
        color: #666666;
      }
      
      • 点击事件中添加class
        this.className = "disable";
        
      • 记得定时移除
        setTimeout(function () {
          btn.removeAttribute("class");
        }, 60000);
        
  • 溢出处理

    • 以前

      • 只有overflow
    • 现在

      • overflow-x
        • 超出宽度时的处理办法
        • 取值: hidden
          • 裁掉x方向内容,显示y轴滚动条
      • overflow-y
        • 超出高度时的处理办法
        • 取值: hidden
          • 裁掉y方向内容,显示x轴滚动条