localhost 和 VPS 之间 CSS 的差异

发布于 2024-11-28 00:42:13 字数 370 浏览 1 评论 0原文

从我的私人 VPS 上的本地主机移动网站后,我在 CSS 方面存在差异,

主要是:

  • 某些地方较大的字体
  • 无法对齐

在 VPS 之前,我的网站已取出托管,一切正常。

在 VPS 上,我自己安装了所有东西 - apache、php、mysql、ftp 服务器。 差异在于所有浏览器(FF、IE、Opera)

服务器详细信息: Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny10 与 Suhosin-Patch

我不知道搜索什么...在哪里。为什么所有内容在 localhost 上都显示正确,而在 VPS 上则不同。相同的文件!

请帮我 :)

After move website from localhost on my private VPS I have differences in CSS

Mainly:

  • bigger font in some places
  • doesn't work align

Before VPS I had website on taked out hosting and there everything was ok.

On VPS I installed everything myself - apache, php, mysql, ftp server.
The differences are on all browsers (FF,IE,Opera)

Server details:
Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny10 with Suhosin-Patch

I don't know what search... where. Why all on localhost displays correctly and on VPS differently. The same files!

Please help me :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

荭秂 2024-12-05 00:42:13

使用萤火虫。检查你的 css 是否有 404ing。

确保在两种情况下缩放设置相同。

除此之外我没有太多的想法...

Use firebug. Check for 404ing of your css.

Make sure you have zoom set the same in both instances.

Other than that I don't have too many ideas...

贵在坚持 2024-12-05 00:42:13

我发现出了什么问题。
在索引文件中,我有:

<?php   session_start();   ?>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

session_start() 出错,这就是原因。

更改后:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<?php   session_start();   ?>

一切正常。

I found what was wrong.
In index file i had:

<?php   session_start();   ?>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

session_start() makes error and that was the reason.

After change on:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<?php   session_start();   ?>

Everything is ok.

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