how can i shorten post titles with css

  • Welcome to Babiato Forum! All Resources are 100% clean and Safe to Use

Haivaan

Member
Apr 24, 2021
40
12
8
let title= "hello how are you"
let newValue = title.substring(0,10)
console.log(newValue) // "hello how"
 

Zer01ne

Well-known member
Mar 21, 2020
1,373
3,429
120
CSS:
    white-space: nowrap;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;

Try this
 

About us

  • Babiato Forum - The webmaster community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day, updating Daily resource to make sure our community is one of the best.

Quick Navigation

User Menu