I made an image for this question to make it easier to understand.
Is it possible to create an ellipsis on a
not sure if this is what you're looking for, it uses min-height instead of height.
$numb) {
$text = substr($text, 0, $numb);
$etc = "...";
$text = $text.$etc;
}
$text = htmlentities($text, ENT_QUOTES);
return $text;
}
echo truncate("this is a multi-lines text block, some lines inside the div, while some outside", 63);
?>