css文本截字,超出文本省略号显示

一、单行文本截字

p {
    text-overflow: ellipsis;/*显示省略号代替裁剪的文本*/
    white-space: nowrap;/*空白处理方式 不换行*/
    overflow: hidden;/*溢出隐藏*/
}    

效果:

二、多行文本截字

p{
    display:-webkit-box;/*设置盒子为弹性盒容器*/
    -webkit-box-orient:vertical;/*设置盒子内部排列方式为垂直排列*/
    -webkit-line-clamp:2;/*显示两行*/
    text-overflow:ellipsis;/*用省略号代替才建的文字*/
    overflow:hidden;/*溢出隐藏*/
    /*若为纯字母、数字,需要加上下面这句*/
    word-break:break-all;
}

效果

原文地址:https://www.cnblogs.com/zjp-/p/9005936.html

时间: 2024-10-10 12:41:19

css文本截字,超出文本省略号显示的相关文章

css 文字超出用省略号显示

在一行文字超出用省略号显示我们经常会使用如下方法 display:block; width:100px; overflow: hidden; text-overflow:ellipsis; white-space: nowrap; 但要求两行及以上时,我们需要换另一种方法,代码如下 display: -webkit-box; overflow: hidden; -webkit-line-clamp: 2; -webkit-box-orient: vertical; 此时要求父级的宽度是确定的,如

css 多行文字超出部分省略号 一行文字超出部分省略号

1.  <!-- 多行文字超出宽度部分省略号: 显示文字行数 隐藏多余的 文本多余显示省略号text-overflow:ellipsis)--> html: <div class="con" > <div id="div1" > 1 hello world!这是我内容的超出三行省略号显示!2hello world!这是我内容的超出三行省略号显示!3hello world!这是我内容的超出三行省略号显示! </div>

css实现文本超出部分省略号显示

一般超出文本显示分为两种:单行超出文本和多行超出文本省略号显示,实现方式使用纯css实现: 1 div { // 单行 2 white-space: nowrap; 3 overflow: hidden; 4 text-overflow: ellipsis; 5 } 1 div { // 多行 2 overflow: hidden; 3 text-overflow: ellipsis; 4 display: -webkit-box; // 注意不是flex 5 -webkit-line-clam

CSS文本单行或者多行超出区域省略号(...)显示方法

单行超出时,主要用到几个CSS属性: 1.text-overflow : clip | ellipsis ; clip : 不显示省略标记(...),而是简单的裁切ellipsis : 当对象内文本溢出时显示省略标记(...) 2.white-space: nowrap | normal | pre|pre-wrap|pre-line; normal :默认.空白会被浏览器忽略. pre:空白会被浏览器保留.其行为方式类似 HTML 中的 <pre> 标签. nowwrap:文本不会换行,文本

CSS div内文字显示两行,超出部分省略号显示

1. 概述 1.1 说明 在项目过程中,有时候需要控制div内文字最多显示两行,超出的使用省略号进行处理.使用识别码/前缀-webkit进行处理可直接得到相应效果. 1.1 -webkit WebKit内核的css前缀为“-webkit-”,Comodo Drangon(科摩多龙),苹果,安卓,搜狗高速浏览器3,快快浏览器,枫树浏览器,云游浏览器,360极速浏览器,世界之窗极速版,SRWare Iron,猎豹浏览器,RockMelt,QQ浏览器都可识别. 备注:IOS版的微信.android版本

css 文字展示两行 其余的省略号显示

<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Document</title> </head> <style> .comment_inner{ width: 200px; word-break: break-all; text-overflow: ellipsis; display: -webkit-box; /**

HTML5--div、span超出部分省略号显示

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-

超出文字省略号显示

css方法: overflow:hidden; white-space:nowrap; text-overflow:ellipsis; js方法: function Ellipsis() { $(".overflowHidden").each(function(){ maxwidth=$(this).attr("data-max"); if($(this).text().length>maxwidth){ $(this).text($(this).text()

文本超出用省略号代替

单行文本超出省略号显示 overflow: hidden; text-overflow:ellipsis; white-space: nowrap; 多行文本超出省略号显示 height:xx; // 将height设置为line-height的整数倍,防止超出的文字露出. overflow: hidden; //超出隐藏 text-overflow: ellipsis; //文本超出用省略号显示 display: -webkit-box; //显示方式(为弹性伸缩盒子模型显示) -webkit