Я пытаюсь заставить MPDF правильно печатать div с переполнением: hidden.Я читал их документацию вверх и вниз и пробовал разные вещи.Неудачно.В mpdf блочные элементы с переполнением: скрытым должны иметь положение: абсолютное или положение: фиксированное множество.Это хорошо, когда вы печатаете только один div.Проблема возникает, когда я пытаюсь вложить div и нужен внутренний для обрезки текста.Вот что я имею в виду:
Это печатает нормально
$html = <<< EOM
<div style='width:300px;height:100px;position:absolute;overflow:hidden;border:1px solid black;'>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
</div>
$html = <<< EOM
Это не
$html = <<< EOM
<div style='border:1px solid red;position:relative;'>
<div style='width:300px;height:100px;position:absolute;overflow:hidden;border:1px solid black;'>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
</div>
</div>
$html = <<< EOM
Сценарий php прост
include("mpdf.php");
$mpdf=new mPDF();
$mpdf->WriteHTML($html);
$mpdf->Output();
Как вы можете видеть, единственная разница в том, что один div находится внутри другого.Кто-нибудь разобрался, как это сделать?