-2

PHP の require または include 関数のスタイルに問題があります。php ファイルをインクルードするたびに、このファイルが完全に空の場合でも、すべてのページが 1 行下に移動し、ページの順序が乱れます。ファイルをインクルードした後にソース コードを確認したところ、コードに変更はないようです。私は本当に混乱しています。私はこのウェブのものが大嫌いでした。

コードの一部を次に示します。問題は、これらが上部に含まれていることです。

    <!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">
    <?php
    include('database.php');
    include('login.php');
    ?>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Web Design - Free CSS Templates</title>
    <meta name="keywords" content="free css templates, web design, 2-column, html css" />
    <meta name="description" content="Web Design is a 2-column website template (HTML/CSS) provided by templatemo.com" />
    <link href="templatemo_style.css" rel="stylesheet" type="text/css" />
    <!--////// CHOOSE ONE OF THE 3 PIROBOX STYLES  \\\\\\\-->
    <link href="css_pirobox/white/style.css" media="screen" title="shadow" rel="stylesheet" type="text/css" />
    <!--<link href="css_pirobox/white/style.css" media="screen" title="white" rel="stylesheet" type="text/css" />
    <link href="css_pirobox/black/style.css" media="screen" title="black" rel="stylesheet" type="text/css" />-->
    <!--////// END  \\\\\\\-->
    </head>
    <body>

    <div id="templatemo_body_wrapper">
    <div id="templatemo_wrapper">

<div id="tempaltemo_header">
    <span id="header_icon"></span>
    <div id="header_content">
        <div id="site_title">
            <a href="http://www.templatemo.com" target="_parent"><img src="images/templatemo_logo.png" alt="LOGO" /></a>            </div>
        <p>This is a free CSS website layout from templatemo.com website.  Feel free to edit and apply for your websites. Duis vitae velit sed dui malesuad mollis aliquet ligula.</p>
      <a href="#" class="detail float_r">Detail</a>
    </div>
</div> <!-- end of header -->

ブラウザで表示されるテンプレートのソース コード: http://www.text-upload.com/read,4081536104820

編集したコード (インクルード部分以外は何も編集されていません): http://www.text-upload.com/read,4081542128884

4

1 に答える 1

2

ファイルを BOM 付きの UTF-8 で保存していませんか? そのエンコーディングの「空の」ファイルでさえ、バイト オーダー マークを持つため、レイアウトに空きスペースが生じます。

シングルバイト文字セットを使用するか、BOM なしで UTF-8 として保存してください。

于 2012-08-25T16:43:25.507 に答える