为什么在浏览器中使用相同的 css 时,生产 css 的字体大小与开发时不同?

发布于 2024-10-27 14:29:11 字数 178 浏览 2 评论 0原文

我更正了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

烟火散人牵绊 2024-11-03 14:29:11

查看源代码不应用 CSS。

重置浏览器缩放?按 ctrl+0cmd+0(对于大多数浏览器)

Viewing source doesn't apply CSS.

Reset browser zoom? Push ctrl+0 or cmd+0 (for most browsers)

小瓶盖 2024-11-03 14:29:11

验证您没有使用“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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文