View Single Post
Old 10-17-2020, 12:25 PM   #8
DNSB
Bibliophagist
DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.
 
DNSB's Avatar
 
Posts: 46,879
Karma: 169716272
Join Date: Jul 2010
Location: Vancouver
Device: Kobo Sage, Libra Colour, Lenovo M8 FHD, Paperwhite 4, Tolino epos
Quote:
Originally Posted by Simons Mith View Post
@DNSB I did mean 0.5px. Yes, a line that thin might well be too thin to display on-screen at ~96dpi. But it wouldn't be too thin to display on paper at ~360dpi. Unfortunately it never manages to get that far.
Last time I looked, 1px = 1/96th of an inch was specified for printing while being left rather nebulous for displays.

What if you try a scaling transform which I've seen used on a few occasions? Though this is not guaranteed to work on every device.

Code:
hr.thin2 {
    height: 1px;
    border-top: none;
    border-bottom: 1px solid black;
    transform: scaleY(0.50);
}
DNSB is online now   Reply With Quote