标题说明了一切,我有2个按钮需要向左浮动,
但是当我将float:left;
分配给相应的css时,按钮会出现“无法点击”,但我无法与它们进行交互。当我删除float:left;
时,他们确实有效,但是他们不在我想要的地方。
此外,我的FireBug不会提供任何错误消息,此问题仅发生在Google Chrome中。如果有人有任何建议,请与我分享。
以下是代码的一部分:
HTML:
<div id="php_beam" class="php_beam">
<form method="post" action="index.php">
<!-- PHP Beam Buttons -->
<input type="submit" name="Previous" value="Vorige" />
<input type="submit" name="Next" value="Volgende" />
</form>
</div>
CSS:
.php_beam
{
width: 950px;
height: 20px;
margin-left: 225px;
margin-top: 5px;
float: left;
}
要清楚,我想知道是否有其他解决方案,而不是使用float:left;
,因为这似乎会导致问题。
答案 0 :(得分:0)
尝试:
.php_beam
{
width: 950px;
height: 20px;
margin-left: 225px;
margin-top: 5px;
}
.php_beam input
{
float: left;
}