在css上:如果文本行是断点,则显示点

qncylg1j  于 11个月前  发布在  其他
关注(0)|答案(5)|浏览(80)

我以前见过这个解决方案,但我不记得具体在哪里.没有JS
当一行被打断的时候,也许这是工作。但是什么是css属性呢?

**问题是:**如何显示给用户:,如果文本长度超过150px

DEMO

div {
  font-family: Arial;
  background: #99DA5E;
  margin: 5px 0;
  padding: 1%;
  width: 150px;
  overflow: hidden;
  height: 17px;
  color: #252525;
}

个字符

ee7vknir

ee7vknir1#

你是在说省略号吗?把它添加到你的CSS中

text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;

字符串
小提琴:http://jsfiddle.net/5UPRU/7/

0h4hbjxa

0h4hbjxa2#

为了使text-overflow: ellipsis工作,还必须指定width(或max-width)、white-space: nowrapoverflow: hidden
元素必须是一个块,所以确保在内联元素上使用display: blockdisplay: inline-block

div {
    width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

字符串

iqih9akk

iqih9akk3#

您正在查找text-overflow: ellipsis;-除了white-space: nowrap;overflow: hidden;之外,还需要在<div>上指定它

div {
    font-family: Arial;
    background: #99DA5E;
    margin: 5px 0;
    padding: 1%;
    width: 150px;
    overflow: hidden;
    height: 17px;
    color: #252525;
    text-overflow: ellipsis;
    white-space: nowrap;
}

字符串
http://jsfiddle.net/5UPRU/4/

vq8itlhq

vq8itlhq4#

你可以在css文件中使用text-overflow: ellipsis;。例如:

div {
font-family: Arial;
background: #99DA5E;
margin: 5px 0;
padding: 1%;
width: 150px;
overflow: hidden;
height: 17px;
color: #252525;
}
span {
float: left;
font-family: Arial;
background: #FAFA41;
margin: 5px 0;
padding: 1%;
width: 150px;
overflow: hidden;
height: 17px;
color: #505050;
}

.short-text {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

个字符

ltqd579y

ltqd579y5#

.ellipsis-container {
  width: 173px;
  overflow: hidden;
  white-space: nowrap;
  text-align: left !important;
  display: block;
}

.ellipsis-container span {
   display: inline-block;
   width: 100%;
   text-overflow: ellipsis;
   overflow: hidden;
   white-space: nowrap;
}

<div class="ellipsis-container">
    <span>Your text goes here</span>
</div>

字符串

相关问题