Open GoogleCodeExporter opened 9 years ago
Sample render with trunk r491 here:
http://eclecticgeek.com/dompdf/debug.php?identifier=c1080fd65093a582fbb61888c3ae
8f66
Original comment by eclecticgeek
on 25 Apr 2012 at 6:31
I realized that our way to get text/line height was not accurate, I'm going to
try to fix it, so that we don't even have to rely on the
DOMPDF_FONT_HEIGHT_RATIO config.
Original comment by fabien.menager
on 28 Apr 2012 at 3:56
To overcome this issue (until the bug is resolved) use CSS background-image
property to add bullet points as background images.
Apparently you need to hide bullet points and prepare the image with single
bullet point.
.pdf-item ul li {
padding-left: 30px;
list-style-type: none;
list-style-image: none;
background-image: url("images/icons/list-icon.png");
background-position: 0px 7px;
background-repeat: no-repeat;
}
Original comment by Ivan.Gry...@gmail.com
on 11 Apr 2013 at 4:26
Original comment by eclecticgeek
on 24 May 2013 at 3:00
Original issue reported on code.google.com by
a_re...@live.co.uk
on 25 Apr 2012 at 1:11