zoukankan      html  css  js  c++  java
  • css文本超出省略

    一、单行

    <div class="div">这是一段中文这是一段中文这是一段中文这是一段中文这是一段中文这是一段中文</div>
    .div {
      background-color: green;
       100px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    二、多行

      1、私有属性

    <div class="div">这是一段中文这是一段中文这是一段中文这是一段中文这是一段中文这是一段中文</div>
    .div {
      background-color: green;
       100px;
      overflow: hidden;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3;
    }

      2、:before和:after

    <div class="div">这是一段中文这是一段中文这是一段中文这是一段中文这是一段中文这是一段中文</div>
    .div {
      background-color: green;
       100px;
      height: 63px;
      position: relative;
      overflow: hidden;
      text-align: justify;
    }
    
    .div:before {
      content: "...";
      background-color: green;
       18px;
      height: 21px;
      position: absolute;
      right: 0;
      bottom: 0;
    }
    
    .div:after {
      content: "";
      background-color: green;
       18px;
      height: 63px;
      position: absolute;
      right: 0;
    }
  • 相关阅读:
    【PBR的基本配置】
    【super vlan的配置】
    Day_03-函数和模块的使用
    Day_02-Python的循环结构
    Day_02-Python的分支结构和循环结构
    Day01_课后练习题
    Day01_初识Python
    一、Linux知识体系结构图
    NAND Flash结构及驱动函数
    区分大端和小端
  • 原文地址:https://www.cnblogs.com/linding/p/13278656.html
Copyright © 2011-2022 走看看