checkbox内容过长自动换行

<el-checkbox-group v-model="checkedBox">
     <el-checkbox>
        <span class="checkbox_content">
            aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
        </span>
      </el-checkbox>
</el-checkbox-group>
<style>
.checkbox_content {
    width: 99%;
    display: inline-grid;
    white-space: pre-line;
    word-wrap: break-word;
    overflow: hidden;
    line-height: 20px;
  }
</style>

 

相关文章:

  • 2021-11-02
  • 2022-12-23
  • 2021-12-27
  • 2021-10-19
  • 2021-11-02
  • 2021-11-21
  • 2021-07-14
猜你喜欢
  • 2021-11-02
  • 2021-05-05
  • 2022-12-23
  • 2022-02-05
  • 2022-12-23
相关资源
相似解决方案