Comment définir le nombre maximum de caractère pour un paragraphe CSS
p {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 200px;
}
Glorious Gnu