我已将布局划分为div,在div =“content”区域内,我有一个表和一个需要定位的过滤器选项。我正在尝试在过滤器选项区域和导航栏之间插入一些边距。这在Chrome浏览器中看起来很不错,但在Mozilla Firefox中,过滤器选项的显示方式低于应有的范围。
这是我的代码以及它当下的样子:
http://jsfiddle.net/elmiri/5mXJ7/如果您在Chrome中打开此链接,过滤器选项看起来很不错,但在Mozilla中看起来非常糟糕。 这是我的所有代码:
<div id="header">
<h1>LOGO</h1>
</div>
<div id="navigation">
<ul>
<li><a href="">Home</a></li>
<li><a href="">Test</a>
<li><a href="">Test</a>
<li><a href="">Test</a>
<li><a href="">Activity Feed</a>
<li><a href="">Stats</a>
<li><a href="">Contact Us</a>
<li><a href="http://localhost/playtime/itms/Users/users.php">Users</a>
<li><a href="">My account</a>
</ul>
</div>
</body>
</html>
<div id="personalised">
<p>Hello, </p>
</div>
<div id="content">
<form id="form1" method="get" action="">
<div id= "filter">
<label for="column">Select client type:</label>
<select name="column" id="column">
<option selected>Key</option>
<option >Norm</option>
<option >Onb</option>
</select>
<input type="submit" name="change" id="change" value="Filter">
<input type="submit" name="Remove" id="Remove" value="Show all">
</div>
<table>
<tr>
<th scope="col">Client name</th>
<th scope="col">Client type</th>
<th> </th>
<th> </th>
</tr>
<tr>
<td>Client2</td>
<td>KEY</td>
<td><a href="#" onclick="newWindow('update_clients.php?client_id=3', 800, 800)">EDIT</a></td>
<td><a href="delete_clients.php?client_id=3">DELETE</a></td>
</tr>
<tr>
<td>Client3</td>
<td>KEY</td>
<td><a href="#" onclick="newWindow('update_clients.php?client_id=5', 800, 800)">EDIT</a></td>
<td><a href="delete_clients.php?client_id=5">DELETE</a></td>
</tr>
<tr>
<td>client4</td>
<td>NORM</td>
<td><a href="#" onclick="newWindow('update_clients.php?client_id=7', 800, 800)">EDIT</a></td>
<td><a href="delete_clients.php?client_id=7">DELETE</a></td>
</tr>
<tr>
<td>client4</td>
<td>ONB</td>
<td><a href="#" onclick="newWindow('update_clients.php?client_id=8', 800, 800)">EDIT</a></td>
<td><a href="delete_clients.php?client_id=8">DELETE</a></td>
</tr>
<tr>
<td>client100</td>
<td>Key</td>
<td><a href="#" onclick="newWindow('update_clients.php?client_id=13', 800, 800)">EDIT</a></td>
<td><a href="delete_clients.php?client_id=13">DELETE</a></td>
</tr>
</table>
</div>
这是定位过滤器选项的代码的一部分:
<div id= "filter">
<label for="column">Select client type:</label>
<select name="column" id="column">
<option <?php if ($col == 'Key') echo 'selected'; ?>>Key</option>
<option <?php if ($col == 'Norm') echo 'selected'; ?>>Norm</option>
<option <?php if ($col == 'Onb') echo 'selected'; ?>>Onb</option>
</select>
<input type="submit" name="change" id="change" value="Filter">
<input type="submit" name="Remove" id="Remove" value="Show all">
</div>
css代码:
#filter {
float:right;
margin-top: 2%;
}
这个过滤器div在Content div中,所以我不确定这是否会导致问题。我试图将margin-top设置为20 px,但它仍然无法在Firefox中运行。 如果有人帮助我在导航栏和过滤器选项之间设置了一个间隙,以便在Chrome和Mozilla中看起来都很好,那将不胜感激。 谢谢