should i use pt or px when specifying border-width in css for media print?

i basically just want hairlines

link|improve this question

76% accept rate
feedback

3 Answers

up vote 0 down vote accepted

For print you should use pt, as it's an absolute unit not based on the resolution of the media.

link|improve this answer
feedback

for hairlines use just px

link|improve this answer
feedback

In general you should use points or em's in place of pixels when possible. The reason is that points and ems both scale with the users' resolution or zoom setting where pixels do not. On many larger, high definition or wide screen monitors individual pixels are too small to be reliably useful for placement.

link|improve this answer
i'm talking about printing on paper, no screen/pixels involved. that's why i asked this question – knittl Jul 6 '10 at 14:12
Do you know what kind of resolution your printer is going to be using? You can certainly use pixels if you're going to print media, but a 600dpi Printer will produce different output than a 300dpi printer with a single pixel border. – g.d.d.c Jul 6 '10 at 14:20
1  
Pixels may scale; they are not always exactly one physical pixel—see CSS 2.1 section 4.3.2. A 600dpi printer will not convert 1px to 1/600″, and extremely-high-def monitors also scale. The page ‘zoom’ feature by design zooms pixels as well as every other unit. Also pt is just as unresponsive to text size settings as px; it should only ever be used for print. – bobince Jul 6 '10 at 15:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.