gpt4 book ai didi

css - H1 额外的空格

转载 作者:行者123 更新时间:2023-12-05 08:59:39 24 4
gpt4 key购买 nike

我的测试服务器上有一个 php 文件,它输出以下内容: enter image description here

页面上有一些额外的空白区域,由红色框突出显示。开发工具 View : enter image description here额外的空格在开发工具中突出显示。输出的文件: enter image description here如您所见,所有文件都在一行中。

代码:

<?php
header("Content-Type: text/html; charset=utf-8");
if(!isset($_GET['action']))
{
$_GET['action'] = "home";
}

echo("<!DOCTYPE HTML>");
echo("<html>");
echo("<head>");
echo("<title>Bug Tracker - ");
echo($_GET['action']);
echo("</title>");
echo('<link rel="stylesheet" href="common.css" />');
echo("</head>");
echo('<body>');
require("action.php");
echo("</body>");
echo("</html>")
?>

这也发生在 firefox 中。

最佳答案

<h1>标签通常有一个默认边距。尝试设置 h1 { margin:0 }在你的 CSS 中。

关于css - H1 额外的空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12037480/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com