为什么在浏览器中使用相同的 css 时,生产 css 的字体大小与开发时不同?
我更正了 setup.py,让 lighttpd 服务器为生产提供静态文件。生产中的页面正确地调用了 css,但我的问题是,尽管它们具有相同的 css 文件,但尺寸与开发中的页面确实不同。
当我从浏览器查看源代码时,会发生同样的事情。浏览器窗口中用于生产的 css 源看起来比用于开发的 css 源要小。可能是什么原因造成的?
I corrected my setup.py to have my lighttpd server serve the static files for production. The pages in production correctly call the css, but my problem is that the sizes are really different from the pages in development despite them having the same css file.
When I look at the source code from the browser, the same thing happens. The css source for production in the browser window looks smaller than the css source for development. What can possibly be causing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看源代码不应用 CSS。
重置浏览器缩放?按 ctrl+0 或 cmd+0(对于大多数浏览器)
Viewing source doesn't apply CSS.
Reset browser zoom? Push ctrl+0 or cmd+0 (for most browsers)
验证您没有使用“pt”(点)单位来声明字体大小。不同浏览器之间的许多因素都会导致其行为有所不同。相反,始终以“px”(像素)单位列出字体大小。
Verify that you are not using "pt" (point) units to declare your font size. Many factors across different browsers will make this behave differently. Instead, always list font sizes in "px" (pixel) units.