元素跟随文本浮动显示

文章讲述了在项目中如何使用CSS实现单行和多行文本的省略号显示,并附带小图标或详细按钮。作者详细介绍了HTML结构和相应的CSS样式规则,展示了两种不同的显示效果。
摘要由CSDN通过智能技术生成

 1、项目需求:单行文本显示省略号,跟随显示小图标

<div class="text-box">
   <div class="script">
      回望党的百年奋斗史,调查研究是我们党的传家宝。从启航红船到领航巨 回望党的百年奋斗史,
   </div>
   <img style="width: 18px;height: 18px;margin-left: 4px;" src="" mode="" />
</div>

css样式:

.text-box{
    margin-top: 50px;
    /* 宽度由内容撑大 */
    width: min-content;
    /* 设置最大可用空间 */ 
    max-width: 400px;
    display: flex;
    align-items: center;
    .script{
        flex: 1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 16px;
    }
}

​

显示效果:

 2、项目需求:多行文本显示省略号,跟随显示[详细]

<div class="Pinned-info">
    <div class="Pinned-detail">
        <span class="icon">[详细]</span>
        <span>
            回望党的百年奋斗史,调查研究是我们党的传家宝。从启航红船到领航巨 回望党的百年奋斗史,
        </span>
        <span class="icon-two">[详细]</span>
    </div>
</div>

css样式:

.Pinned-info{
    max-width: 500px;
    display: flex;
    position: relative;
    overflow: hidden;
    border: 1px solid green;
    margin-top: 30px;
    .Pinned-detail{
        text-indent: 2em;
        font-size: 14px;
        line-height: 20px;
        word-break: break-all;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
    .icon{
        font-size: 14px;
        line-height: 20px;
        color: $primaryColor;
        float: right;
        clear: both;
        display: block;
        width: 40px;
        height: 20px;
        text-indent: 0;
    }
    .icon-two{
        font-size: 14px;
        line-height: 20px;
        color: $primaryColor;
        position: relative;
        display: inline-block;
        margin-left: 2px;
        text-indent: 0;
    }
    .icon-two::after{
        content: '';
        position: absolute;
        background: #ffffff;
        left: 0px;
        bottom: -100%;
        height: 100%;
        width: 100%;
    }
    .Pinned-detail::before{
        content: '';
        display: block;
        float: right;
        width: 0px;
        height: calc(100% - 20px);
    }

    .Pinned-detail::after{
        position: absolute;
        content: '';
        display: inline-block;
        width: 100%;
        height: 100%;
        background: #ffffff;
    }

}

显示效果:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值