Quote:
Originally Posted by Simons Mith
@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);
}