Bootstrap CSS表行高度,下拉按钮太大

时间:2012-07-05 08:43:15

标签: html css twitter-bootstrap

我有一个Bootstrap表,当我使用按钮下拉列表时,行太高了。我可以使用一些CSS来阻止这种情况发生吗?

我注意到带有普通按钮的Bootstrap表不是100%完美:http://twitter.github.com/bootstrap/base-css.html#tables但是它们比我的下拉按钮更好。

这是一个小提琴:http://jsfiddle.net/uEMtf/

这是HTML:

<!DOCTYPE html>
<html lang="en">
<head>
    <title>Test Page</title>
</head>
<body>
 <table class="table table-bordered table-striped">
    <tbody>
        <tr><td>some stuff</td><td>some more stuff</td></tr>
        <tr>
            <td>here's something</td>
            <td><div class="btn-toolbar"><div class="btn-group"> <button class="btn dropdown-toggle" data-toggle="dropdown">Options<span class="caret"></span></button>
                        <ul class="dropdown-menu"> <li><a href="del"> Action 1</a></li>
                            <li><a href="details"> Action 2</a></li>
                            <li><a href="edit"> Action 2</a></li></ul></div></div>
                        </ul>
                    </div>
                </div>
            </td>
        </tr>
    <tr>
            <td>here's something</td>
            <td><button class="btn" href="#">Default</button></td>
                    </tr>
        <tr>
            <td>another row</td>
            <td>with more stuff</td>
        </tr>
    </tbody>
</table>
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
<script type="text/javascript" src="bootstrap.js"></script>
</body>
</html>​

1 个答案:

答案 0 :(得分:1)

删除类.btn-toolbar类或定义margin top&amp;在.btn-toolbar

下面的css代码中的某处

工作小提琴:http://jsfiddle.net/surendraVsingh/uEMtf/1/