how can i shorten post titles with css

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,428
120
CSS:
    white-space: nowrap;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;

Try this
 

Forum statistics

Threads
69,907
Messages
913,489
Members
243,745
Latest member
Player888

About us

  • Our 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 to make sure our community is one of the best.

Quick Navigation

User Menu