php在html页面中创建额外空间

发布于 2024-12-13 23:42:34 字数 233 浏览 0 评论 0原文

我是网络开发新手,我真的被这个愚蠢的问题困扰了。当我在 html 代码之前插入 php 代码时,如下所示: ... 它会创建我的页面顶部有额外的空白区域,并将整个内容“推下”。是否有可能以某种方式避免创建额外的空间?如果 php 代码位于 html 的主体部分中,它还会产生额外的空间,例如,如果它位于两个段落之间,则会在这两个段落之间创建额外的空间。 感谢您的回答!

I'm new to web development and I'm really stuck with this silly problem. When I insert php code before html code, something like this: <?php ...some code... ?><!doctype html><html>... it creates extra blank space on top of my page and 'pushes' whole content down. Is it possible to somehow avoid creating that extra space? It also makes extra space if the php code is in body part of html, for example if it's in between two paragraphs it will create extra space between that two paragraphs.
Thanks for your answers!

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

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

发布评论

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

评论(1

失退 2024-12-20 23:42:34

我想这会发生什么

你的代码是这样的

<?php
//your php code here
?>
<!DOCTYPE html PUBLIC "

你应该这样

<?php
//your php code here
?><!DOCTYPE html PUBLIC "

I guess this what happens

Your code like this

<?php
//your php code here
?>
<!DOCTYPE html PUBLIC "

You should have it like this

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