div 的 placeholder

DL-CODER / 2023-07-31 / 原文


  .editor {
    width: 100%;
    height: 100%;
    outline: none;
    border: 1px solid #cacdd4;
    border-radius: 5px;
    box-sizing: border-box;
    overflow-y: auto;
    padding: 0 5px;
    &:empty::before {
      content: attr(placeholder);
      font-size: 12px;
      color: #cacdd4;
    }
    &:focus:before {
      content: none;
    }
  }