I'm working on mobile webApp development these days, and I have read some article about it, but the description here confused me.
Points are abstract units, they only make sense in this mathematical coordinate space.
So it means points are like density-independent pixel
? Some place use 375pt * 627pt
to describe the iPhone6 and many articles about design use pt
as a unit.
And the description of pt
as a css unit from CSS Trick.
A point is a unit of measurement used for real-life ink-on-paper typography. 72pts = one inch. One inch = one real-life inch like-on-a-ruler. Not an inch on a screen, which is totally arbitrary based on resolution.
And I remember there is a formula like 1px = 0.75pt
. So I can't tell which points are they talking about.
- Are these
point
the same one? - iPhone6 has
375px * 627px
css pixels (when setinitial-scale
to 1.0), so why some place usept
? - Does the number
12pt
in designers' article means12px
?