php在html页面中创建额外空间
我是网络开发新手,我真的被这个愚蠢的问题困扰了。当我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想这会发生什么
你的代码是这样的
你应该这样
I guess this what happens
Your code like this
You should have it like this