【问题标题】:Unexpected space between DIV elementsDIV 元素之间的意外空间
【发布时间】:2010-05-31 14:20:19
【问题描述】:

显示 div 的 php 页面的代码

<?php
session_start();
require_once("classlib/mainspace.php");

if (isset($_SESSION['username'])==FALSE) {
  header("location:login.php");
}
$user = new User($_SESSION['username']);
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <link rel="stylesheet" type="text/css" href="style/style.css" />
  <title>SimpleTask - Home</title>
  </head>
  <body>
    <div id="main">
      <div id="menu">
        <div id="items">
          <ul>
            <li><a href="home.php">home</a></li>
            <li>&bull;</li>
            <li><a href="projects.php">my projects</a></li>
            <li>&bull;</li>
            <li><a href="comments.php">my comments</a></li>
          </ul>
        </div>
        <div id="user">
          <p>Welcome, <?php echo $user->GetRealName(); ?><br/><a href="editprofile.php">edit profile</a> &bull; <a href="logout.php">logout</a></p>
        </div>
      </div>
      <div id="content">
        <h1>HOME</h1>
      </div>
      <div id="footer">
      <p>footer text goes here here here here</p>
      </div>
    </div>
  </body>
</html>

你可以在这里找到我的 CSS http://tasker.efficaxdevelopment.com/style/style.css

要查看实时页面,请转到此处http://tasker.efficaxdevelopment.com/login.php

用户名:管理员 密码:密码

【问题讨论】:

    标签: php css html


    【解决方案1】:

    添加:

    h1,p {
    margin:0;
    }
    

    这些元素和其他一些元素默认有边距和内边距。

    【讨论】:

    • @jon 我猜你应该改一下标题。