简体   繁体   中英

CSS Text word break With overflow

Hey I want To make my text to break word and get only the first break word like make the the second break word and the rest to be hidden.

This is the site for the code: here

This is the part i want to be edit. ignore the other code in the jsfiddle.

.rpwe-block a{
color:#9d6745;
text-decoration:none;
clear: both;
text-overflow:ellipsis;
 overflow: hidden; white-space: nowrap;
}

I just want you to help me in editing this code I have.

For the overflow: hidden to work the element would need a width (by default a tags are inline elements)

.rpwe-block a{
color:#9d6745;
text-decoration:none;
clear: both;
text-overflow:ellipsis;
overflow: hidden; white-space: nowrap;
width: 100%;
display: block;
}

Get rid of white-space: no-wrap from .rpwe-block a and add the following:

.rpwe-title{
  height: 14px;
  display: block;
  overflow: hidden;
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM