为 Web 模板设置 PPI
我想创建一个模板。如果用户显示器至少是 14 英寸,它本身的 ppi 可能是 102 或其他。
那么我应该为我的网页模板设置多少 ppi 以避免屏幕水平滚动?是14英寸显示器的最大ppi吗?
I want to create a template . If the user monitor at least is 14 inches , It has a ppi for itself maybe 102 or something else.
So What ppi should I set for my web template to avoid the screen horizontal scrolling ? Is it the maximum ppi of the 14 inches monitor ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ppi/dpi(每英寸点数)在这里不起作用:不同的 14 英寸显示器可以有不同的分辨率 - 屏幕上显示的像素数。
出于您的目的,您唯一需要担心的是用户的分辨率。
像素的大小可能会根据设备的大小而有所不同,但这对于布局来说并不重要。
如果您想避免滚动条,请选择非常低的像素宽度(许多人认为 960 像素是理想的,因为具有该宽度的布局保证在 1024 x 768 分辨率下工作)或使用相对宽度而不是像素大小。
相关:
ppi/dpi (dots per inch) doesn't work here: Different 14 inch monitors can have different resolutions - the number of pixels displayed on the screen.
For your purposes, the only thing you need to worry about is the user's resolution.
The size of a pixel can differ depending on the device's size, but it doesn't matter for layouting.
If you want to avoid scroll bars, either choose a very low pixel width (960 pixels is deemed ideal by many, because layouts with that width are guaranteed to work on a 1024 x 768 resolution) or use relative widths instead of pixel sizes.
Related: