Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用此代码时在页面顶部添加空格:
<?php get_header(); ?>
但在正常情况下,代码是正确的,而不是页面顶部的空间
添加 get_header 后的图片:
如果您只是添加了空格或换行符,那么 HTML 只会删除它们。
您必须添加一些标签<br>或使用 CSS 来添加所需的空间。
<br>
如果我理解你的问题..试试这个:
* { margin:0; padding:0; } body { padding-top: 50px; }
然后根据您的需要进行调整。