包含时,html表内容未对齐

时间:2014-09-12 08:02:59

标签: php html css

首先,我想说我的英语不是很好,请原谅我的错误,如果我做了一些难以理解的事情,请告诉我...... 我已经使用php / mysql为我的网站创建了一个内部搜索引擎,它可以正常工作,当它独自一人时它看起来也很好 http://109.imagebam.com/download/WgEUwzfUPNYjIXIUnFDZww/35076/350755851/search.png
但是当我将它包含在主页中时,它会改变尺寸并变得不对齐 http://112.imagebam.com/download/xgrHs9O6HKt1nI404GNldg/35076/350755845/included.png

我的问题是,我做错了什么以及如何解决它?

表单代码为:

<form method="post" action="">
    <input type="hidden" name="s" value="1">
        <table>
            <tr>
                <td><input type="text" placeholder="Cerca nel sito" name="ricerca" required></td>
                <td><input type="image" src="img/search.png" alt="Cerca"></td>
            </tr>
        </table>
    </form>

主页包含代码为:

<div id="content">
        <div id="right">
        <?php
            include("search.php");
            include('contatti.php');
        ?>
        </div>
        other stuff
        </div>

和divs css代码是:

#content
{
    padding-left:50px;
    padding-right:50px;
    min-width:1090px;
}

#right h1
{
    font-family:trajan pro,agency fb,Arial, Helvetica, sans-serif;
    font-weight:normal;
    color:#555;
    padding:40px 0 0 30px;
}

#right h2
{
    padding:15px 10px 0 30px;
    font:13px normal trajan pro,agency fb,arial,helvetica,sans-serif;
    color:#3ba4c4;
    text-decoration:underline;
}

#right p
{
    padding:10px 10px 0 30px;
}

#right
{
    width:280px;
    color:#000;
    float:right;
}

如果需要别的东西,请告诉我

1 个答案:

答案 0 :(得分:0)

<td><input type="image" src="img/search.png" alt="Cerca" align="left"></td>

该表多次无法修复,需要一些帮助。

试试这个