当前位置:   article > 正文

【Css】纯css展开、收起超出的文本

【Css】纯css展开、收起超出的文本

效果

展开

在这里插入图片描述


收起

在这里插入图片描述


未超出

在这里插入图片描述


  • -webkit-line-clamp: 3; 设置限制行数
<div class="wrap">
<input
     type="checkbox"
     id="exp-txt"
   >
   <div class="text">
     <label
       for="exp-txt"
       class="btn"
     ></label>
     我是文本我是文本我是文本我是文本我是文本我是文本我是文本我是文本我是文本
   </div>
 </div>
 <style>
.text {
    display: -webkit-box;
    /* 超过的行数隐藏 */
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wrap {
    display: flex;
    overflow: hidden;
    position: relative;
    /* 宽度 */
    width: 300px;
}

#exp-txt {
    display: none;
}

.text::before {
    content: '';
    float: right;
    width: 0;
    height: 100%;
    /* 和文本大小一样 */
    margin-bottom: -16px;
}

.text::after {
    content: '';
    width: 100%;
    height: 100%;
    /* 颜色必须与背景相同 */
    background-color: white;
    position: absolute;
}

.btn {
    float: right;
    clear: both;
    cursor: pointer;
    position: relative;
}

.btn::after {
    content: '';
    position: absolute;
    border: solid 5px #000;
    border-color: #000 transparent transparent transparent;
    right: 0;
    top: 5px;
}


#exp-txt:checked+.text {
    -webkit-line-clamp: 999;
}

#exp-txt:checked+.text .btn::after {
    border-color: transparent transparent #000 transparent;
    top: -5px;
    z-index: 1;
}

#exp-txt:checked+.text::after {
    background: transparent;
}
</style>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/728434
推荐阅读