HR 高度 1px 不起作用
<hr style="height: 1px; border: none; color: #000000; background-color: #000000; padding: 0px; margin: 0px; width: 20px; font-size: 0px; line-height: 1px;">
我还尝试过
<div style="background-color: #000000; height: 1px; width: 20px;"></div>
在某些设备上所有线条都是 1px...在我的 Android 上...在横向上它们也是 1px,但在纵向上有些线条是 1px,有些是 2px...如果我滚动它们则不会改变所以它不是屏幕在做。我很困惑,有人可以向我解释一下吗?
<hr style="height: 1px; border: none; color: #000000; background-color: #000000; padding: 0px; margin: 0px; width: 20px; font-size: 0px; line-height: 1px;">
I also tried
<div style="background-color: #000000; height: 1px; width: 20px;"></div>
On some devices all the lines are 1px... on my android... on landscape they're all 1px too but on portrait some lines are 1px and some are 2px... And if I scroll they don't change so its not the screen doing it. I'm so confused, can someone explain this to me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
某些 Android 设备(例如 HTC 希望)没有配置的一定数量的实际像素。类似于 800x 480,但实际像素数量较少。所以真实设备中的 2px 可能是 1px(因为它的物理 dpi 更大、更小)。
在 Android 上不要“玩弄”像素。使用密度点(http://developer.android.com/guide/practices/screens_support.html,但在某些设备上问题可能仍然存在)
Some android devices like HTC desire don't have the some number of real pixels that is configured to be. It's like 800x 480 but the real pixels are less in numbers. so 2px in the real device might be 1px (because it's larger , smaller physical dpi).
On android don't "play" with pixels. Play with density points (http://developer.android.com/guide/practices/screens_support.html , but still on some devices the problem might persist)