So definieren Sie die maximale Anzahl von Charakteren für einen Absatz CSS
p {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 200px;
}
Glorious Gnu